Btrfs-progs: fix magic return value in dir-test.c

Signed-off-by: Wang Shilong <wangsl.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
This commit is contained in:
Wang Shilong 2013-09-04 23:22:33 +08:00 committed by Chris Mason
parent 039a27cea4
commit 5f00e770f8
1 changed files with 8 additions and 8 deletions

View File

@ -140,7 +140,7 @@ fatal_release:
btrfs_release_path(&path); btrfs_release_path(&path);
fatal: fatal:
printf("failed to insert %lu ret %d\n", oid, ret); printf("failed to insert %lu ret %d\n", oid, ret);
return -1; return ret;
} }
static int insert_dup(struct btrfs_trans_handle *trans, struct btrfs_root static int insert_dup(struct btrfs_trans_handle *trans, struct btrfs_root
@ -213,7 +213,7 @@ out_release:
btrfs_release_path(path); btrfs_release_path(path);
out: out:
printf("failed to delete %lu %d\n", radix_index, ret); printf("failed to delete %lu %d\n", radix_index, ret);
return -1; return ret;
} }
static int del_one(struct btrfs_trans_handle *trans, struct btrfs_root *root, static int del_one(struct btrfs_trans_handle *trans, struct btrfs_root *root,
@ -241,7 +241,7 @@ static int del_one(struct btrfs_trans_handle *trans, struct btrfs_root *root,
out_release: out_release:
btrfs_release_path(&path); btrfs_release_path(&path);
printf("failed to delete %lu %d\n", oid, ret); printf("failed to delete %lu %d\n", oid, ret);
return -1; return ret;
} }
static int lookup_item(struct btrfs_trans_handle *trans, struct btrfs_root static int lookup_item(struct btrfs_trans_handle *trans, struct btrfs_root
@ -269,7 +269,7 @@ static int lookup_item(struct btrfs_trans_handle *trans, struct btrfs_root
btrfs_release_path(&path); btrfs_release_path(&path);
if (ret) { if (ret) {
printf("unable to find key %lu\n", oid); printf("unable to find key %lu\n", oid);
return -1; return ret;
} }
return 0; return 0;
} }
@ -292,7 +292,7 @@ static int lookup_enoent(struct btrfs_trans_handle *trans, struct btrfs_root
btrfs_release_path(&path); btrfs_release_path(&path);
if (!ret) { if (!ret) {
printf("able to find key that should not exist %lu\n", oid); printf("able to find key that should not exist %lu\n", oid);
return -1; return ret;
} }
return 0; return 0;
} }
@ -342,14 +342,14 @@ static int empty_tree(struct btrfs_trans_handle *trans, struct btrfs_root
fprintf(stderr, fprintf(stderr,
"failed to remove %lu from tree\n", "failed to remove %lu from tree\n",
found); found);
return -1; return ret;
} }
if (!keep_running) if (!keep_running)
break; break;
} }
return 0; return 0;
fprintf(stderr, "failed to delete from the radix %lu\n", found); fprintf(stderr, "failed to delete from the radix %lu\n", found);
return -1; return ret;
} }
static int fill_tree(struct btrfs_trans_handle *trans, struct btrfs_root *root, static int fill_tree(struct btrfs_trans_handle *trans, struct btrfs_root *root,
@ -512,6 +512,6 @@ int main(int ac, char **av)
} }
out: out:
close_ctree(root, &super); close_ctree(root, &super);
return err; return !!err;
} }