From: Milan Stephan <milan.stephan+linux@xxxxxx> Fixes return value of btrfs_uuid_tree_iterate to catch and return errors when calling btrfs_alloc_path. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=188731 Reported-by: Pan Bian <bianpan2016@xxxxxxx> Signed-off-by: Milan Stephan <milan.stephan+linux@xxxxxx> Signed-off-by: Thomas Preisner <thomas.preisner+linux@xxxxxx> --- fs/btrfs/uuid-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/btrfs/uuid-tree.c b/fs/btrfs/uuid-tree.c index 161342b..12f873d 100644 --- a/fs/btrfs/uuid-tree.c +++ b/fs/btrfs/uuid-tree.c @@ -354,5 +354,5 @@ int btrfs_uuid_tree_iterate(struct btrfs_fs_info *fs_info, btrfs_free_path(path); if (ret) btrfs_warn(fs_info, "btrfs_uuid_tree_iterate failed %d", ret); - return 0; + return ret; } -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
