]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit8839c7b17e832124db094d9302fe88ff698e0129
tree6f86031fd5bc66c684ebf0ea5b3447fb0c52c1c1
parent17339857e2b29ce6a23bccb01fd28d0722f9bd26
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