]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: handle ENOENT in btrfs_uuid_tree_iterate
authorJosef Bacik <josef@toxicpanda.com>
Fri, 6 Dec 2019 16:39:00 +0000 (11:39 -0500)
committerDavid Sterba <dsterba@suse.com>
Fri, 13 Dec 2019 13:10:45 +0000 (14:10 +0100)
commite531d78f2010f3d17eedb8c2483701b3623cd2fe
treedc44b6d0f8680087c56b13ef90b062c039e3e600
parent586e83692adcc69740b6cfd642938fe7b3d83b85
btrfs: handle ENOENT in btrfs_uuid_tree_iterate

If we get an -ENOENT back from btrfs_uuid_iter_rem when iterating the
uuid tree we'll just continue and do btrfs_next_item().  However we've
done a btrfs_release_path() at this point and no longer have a valid
path.  So increment the key and go back and do a normal search.

CC: stable@vger.kernel.org # 4.4+
Reviewed-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/uuid-tree.c