]> www.infradead.org Git - users/jedix/linux-maple.git/commit
btrfs: zlib: make the compression path to handle sector size < page size
authorQu Wenruo <wqu@suse.com>
Fri, 6 Sep 2024 04:44:55 +0000 (14:14 +0930)
committerDavid Sterba <dsterba@suse.com>
Mon, 11 Nov 2024 13:34:12 +0000 (14:34 +0100)
commitf6ebedb09bb276256e084196e2322562dc4aac10
tree46c81695cc706f775c068b5beac9a3d8077204a8
parent67cd3f22176904e7445fea5f307f6fa2ad1d89e4
btrfs: zlib: make the compression path to handle sector size < page size

Inside zlib_compress_folios(), each time we switch the input page cache,
the @start is increased by PAGE_SIZE.

But for the incoming compression support for sector size < page size
(previously we support compression only when the range is fully page
aligned), this is not going to handle the following case:

    0          32K         64K          96K
    |          |///////////||///////////|

@start has the initial value 32K, indicating the start filepos of the
to-be-compressed range.

And when grabbing the first page as input, we always call "start +=
PAGE_SIZE;".

But since @start is starting at 32K, it will be increased by 64K,
resulting it to be 96K for the next range, causing incorrect input range
and corruption for the future subpage compression.

Fix it by only increase @start by the input size.

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