]> git.ipfire.org Git - thirdparty/linux.git/commit - fs/btrfs/block-group.c
btrfs: block-group: Reuse the item key from caller of read_one_block_group()
authorQu Wenruo <wqu@suse.com>
Tue, 5 Nov 2019 01:35:35 +0000 (09:35 +0800)
committerDavid Sterba <dsterba@suse.com>
Mon, 18 Nov 2019 16:51:50 +0000 (17:51 +0100)
commitd49a2ddb1568d533ef3b77841a3ea1ff5bfa8b98
tree6f86031fd5bc66c684ebf0ea5b3447fb0c52c1c1
parentffb9e0f05fab5f7fe62c5d6964825e59e91be0db
btrfs: block-group: Reuse the item key from caller of read_one_block_group()

For read_one_block_group(), its only caller has already got the item key
to search next block group item.

So we can use that key directly without doing our own convertion on
stack.

Also, since that key used in btrfs_read_block_groups() is vital for
block group item search, add 'const' keyword for that parameter to
prevent read_one_block_group() to modify it.

Signed-off-by: Qu Wenruo <wqu@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/block-group.c