From: Milan Stephan <[email protected]> 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 <[email protected]> Signed-off-by: Milan Stephan <[email protected]> Signed-off-by: Thomas Preisner <[email protected]> --- 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

