fs: btrfs: Remove unused debug code left from development

Signed-off-by: Marek Behun <marek.behun@nic.cz>
This commit is contained in:
Marek Behún 2018-03-19 12:02:11 +01:00 committed by Tom Rini
parent 025a0d40e1
commit 22fc7b6cd6
2 changed files with 0 additions and 14 deletions

View File

@ -221,7 +221,3 @@ int btrfs_uuid(char *uuid_str)
#endif
return -ENOSYS;
}
/*
btrfs_list_subvols();
*/

View File

@ -45,16 +45,6 @@ static int generic_bin_search(void *addr, int item_size, struct btrfs_key *key,
int low = 0, high = max, mid, ret;
struct btrfs_key *tmp;
if (0) {
int i;
printf("\tsearching %llu %i\n", key->objectid, key->type);
for (i = 0; i < max; ++i) {
tmp = (struct btrfs_key *) ((u8 *) addr + i*item_size);
printf("\t\t%llu %i\n", tmp->objectid, tmp->type);
}
printf("\n");
}
while (low < high) {
mid = (low + high) / 2;