]> git.ipfire.org Git - thirdparty/linux.git/commit
btrfs: scrub: remove unused btrfs_path in scrub_simple_mirror()
authorQu Wenruo <wqu@suse.com>
Wed, 14 Jun 2023 06:39:55 +0000 (14:39 +0800)
committerDavid Sterba <dsterba@suse.com>
Mon, 21 Aug 2023 12:52:13 +0000 (14:52 +0200)
commit17353a3447927455b8242aa371488b7af01c5e14
tree92de067d89cfd29f6fab1ac3fdd4c683a6916f43
parent7b365a2a3d31cc523ad24f2147285c3707297ce8
btrfs: scrub: remove unused btrfs_path in scrub_simple_mirror()

The @path in scrub_simple_mirror() is no longer utilized after commit
e02ee89baa66 ("btrfs: scrub: switch scrub_simple_mirror() to scrub_stripe
infrastructure").

Before that commit, we call find_first_extent_item() directly, which
needs a path and that path can be reused.  But after that switch commit,
the extent search is done inside queue_scrub_stripe(), which will no
longer accept a path from outside.

So the @path variable can be safely removed.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: Qu Wenruo <wqu@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
[ remove the stale comment ]
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/scrub.c