btrfs: simplify tree block checksumming loop
authorDavid Sterba <dsterba@suse.com>
Thu, 27 Feb 2020 20:00:47 +0000 (21:00 +0100)
committerDavid Sterba <dsterba@suse.com>
Mon, 23 Mar 2020 16:01:52 +0000 (17:01 +0100)
commite9be5a303d271faa42b44b606fbe4d7507a7f026
treeae2abf74cff5203e1e4d985da7719c59ffe51ac4
parent59a0fcdb489dae25416e93b9fc67cc97a6847f01
btrfs: simplify tree block checksumming loop

Thw whole point of csum_tree_block is to iterate over all extent buffer
pages and pass it to checksumming functions. The bytes where checksum is
stored must be skipped, thus map_private_extent_buffer. This complicates
further offset calculations.

As the first page will be always present, checksum the relevant bytes
unconditionally and then do a simple iteration over the remaining pages.

Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/disk-io.c