2022-03-31 04:53:23

by Sweet Tea Dorminy

[permalink] [raw]
Subject: [PATCH v2 0/2] btrfs: allocate page arrays more efficiently

In several places, btrfs allocates an array of pages, one at a time. In
addition to duplicating code, the mm subsystem provides a helper to
allocate multiple pages at once into an array which is suited for our
usecase. In the fast path, the batching can result in better allocation
decisions and less locking. This changeset first adjusts the users to
call a common array-of-pages allocation function, then adjusts that
common function to use the batch page allocator.

v2: moved new helper to extent_io.[ch]. Fixed title format.
v1: https://lore.kernel.org/linux-btrfs/[email protected]/

Sweet Tea Dorminy (2):
btrfs: factor out allocating an array of pages
btrfs: allocate page arrays using bulk page allocator

fs/btrfs/check-integrity.c | 8 ++---
fs/btrfs/compression.c | 37 +++++++++-----------
fs/btrfs/extent_io.c | 72 +++++++++++++++++++++++++++++---------
fs/btrfs/extent_io.h | 2 ++
fs/btrfs/inode.c | 10 +++---
fs/btrfs/raid56.c | 30 +++-------------
6 files changed, 85 insertions(+), 74 deletions(-)

--
2.35.1