]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: use integrated bitmaps for btrfs_raid_bio::dbitmap and finish_pbitmap
authorQu Wenruo <wqu@suse.com>
Fri, 27 May 2022 07:28:17 +0000 (15:28 +0800)
committerDavid Sterba <dsterba@suse.com>
Mon, 25 Jul 2022 15:44:34 +0000 (17:44 +0200)
commit658d01cffa533e466bc1b4229108225ce041c50f
tree79dffcec963d8202454e4c8f3597cf4ad71c881a
parent0819408a68766428539bc0f3e954d832421930f0
btrfs: use integrated bitmaps for btrfs_raid_bio::dbitmap and finish_pbitmap

Previsouly we use "unsigned long *" for those two bitmaps.

But since we only support fixed stripe length (64KiB, already checked in
tree-checker), "unsigned long *" is really a waste of memory, while we
can just use "unsigned long".

This saves us 8 bytes in total for btrfs_raid_bio.

To be extra safe, add an ASSERT() making sure calculated
@stripe_nsectors is always smaller than BITS_PER_LONG.

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