]> www.infradead.org Git - users/jedix/linux-maple.git/commit
btrfs: use page alloc/free wrappers for compression pages
authorDavid Sterba <dsterba@suse.com>
Wed, 15 Nov 2023 16:59:39 +0000 (17:59 +0100)
committerDavid Sterba <dsterba@suse.com>
Fri, 15 Dec 2023 19:27:01 +0000 (20:27 +0100)
commit9ba965dca3b13757e49f98bbea7cf48f07633ff9
treead8a92d059c15e8e141d11c7dee004b29d413736
parent9ba7c686feb04f16088ca4523c204ed49b07fc0a
btrfs: use page alloc/free wrappers for compression pages

This is a preparation for managing compression pages in a cache-like
manner, instead of asking the allocator each time. The common allocation
and free wrappers are introduced and are functionally equivalent to the
current code.

The freeing helpers need to be carefully placed where the last reference
is dropped.  This is either after directly allocating (error handling)
or when there are no other users of the pages (after copying the contents).

It's safe to not use the helper and use put_page() that will handle the
reference count. Not using the helper means there's lower number of
pages that could be reused without passing them back to allocator.

Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/compression.c
fs/btrfs/compression.h
fs/btrfs/inode.c
fs/btrfs/lzo.c
fs/btrfs/zlib.c
fs/btrfs/zstd.c