Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0338dff6 authored by Gu Jinxiang's avatar Gu Jinxiang Committed by David Sterba
Browse files

btrfs: do reverse path readahead in btrfs_shrink_device



In btrfs_shrink_device, before btrfs_search_slot, path->reada is set to
READA_FORWARD. But I think READA_BACK is correct.

Since:

 1. key.offset is set to (u64)-1
 2. after btrfs_search_slot, btrfs_previous_item is called

So, for readahead previous items, READA_BACK is the correct one.

Signed-off-by: default avatarGu Jinxiang <gujx@cn.fujitsu.com>
Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 4ed0a7a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4414,7 +4414,7 @@ int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
	if (!path)
		return -ENOMEM;

	path->reada = READA_FORWARD;
	path->reada = READA_BACK;

	mutex_lock(&fs_info->chunk_mutex);