[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250430205305.22844-20-kanchana.p.sridhar@intel.com>
Date: Wed, 30 Apr 2025 13:53:05 -0700
From: Kanchana P Sridhar <kanchana.p.sridhar@...el.com>
To: linux-kernel@...r.kernel.org,
linux-mm@...ck.org,
hannes@...xchg.org,
yosry.ahmed@...ux.dev,
nphamcs@...il.com,
chengming.zhou@...ux.dev,
usamaarif642@...il.com,
ryan.roberts@....com,
21cnbao@...il.com,
ying.huang@...ux.alibaba.com,
akpm@...ux-foundation.org,
linux-crypto@...r.kernel.org,
herbert@...dor.apana.org.au,
davem@...emloft.net,
clabbe@...libre.com,
ardb@...nel.org,
ebiggers@...gle.com,
surenb@...gle.com,
kristen.c.accardi@...el.com
Cc: wajdi.k.feghali@...el.com,
vinodh.gopal@...el.com,
kanchana.p.sridhar@...el.com
Subject: [PATCH v9 19/19] mm: zswap: Batched zswap_compress() with compress batching of large folios.
This patch introduces a new unified implementation of zswap_compress()
for compressors that do and do not support batching. This eliminates
code duplication and facilitates maintainability of the code with the
introduction of compress batching.
The vectorized implementation of calling the earlier zswap_compress()
sequentially, one page at a time in zswap_store_pages(), is replaced
with this new version of zswap_compress() that accepts multiple pages to
compress as a batch.
If the compressor does not support batching, each page in the batch is
compressed and stored sequentially.
If the zswap compressor supports batching, for e.g., 'deflate-iaa',
the Intel IAA hardware accelerator, the batch is compressed in parallel
in hardware by calling crypto_acomp_batch_compress(), the new batch
compression API added earlier in this series. If all requests in the
batch are compressed without errors, the compressed buffers are then
stored in zpool.
Another important change this patch makes is with the acomp_ctx mutex
locking in zswap_compress(). Earlier, the mutex was only held during
compression. With the new code, [un]locking the mutex per page caused
regressions for software compressors when testing with usemem
(30 processes) and also kernel compilation with 'allmod' config. The
regressions were more eggregious when PMD folios were stored. The
implementation in this commit locks/unlocks the mutex once per batch,
that resolves the regression.
The use of prefetchw() for zswap entries and likely()/unlikely()
annotations prevent regressions with software compressors like zstd, and
generally improve non-batching compressors' performance with the
batching code by ~8%.
Signed-off-by: Kanchana P Sridhar <kanchana.p.sridhar@...el.com>
---
mm/zswap.c | 187 +++++++++++++++++++++++++++++++++++++----------------
1 file changed, 132 insertions(+), 55 deletions(-)
diff --git a/mm/zswap.c b/mm/zswap.c
index 1d6795704350..561096f29c58 100644
--- a/mm/zswap.c
+++ b/mm/zswap.c
@@ -35,6 +35,7 @@
#include <linux/pagemap.h>
#include <linux/workqueue.h>
#include <linux/list_lru.h>
+#include <linux/prefetch.h>
#include "swap.h"
#include "internal.h"
@@ -973,71 +974,147 @@ static void zswap_entry_free(struct zswap_entry *entry)
/*********************************
* compressed storage functions
**********************************/
-static bool zswap_compress(struct page *page, struct zswap_entry *entry,
- struct zswap_pool *pool)
+/*
+ * Unified code path for compressors that do and do not support batching. This
+ * procedure will compress multiple @nr_pages passed in as @pages.
+ *
+ * @nr_pages can be ZSWAP_MAX_BATCH_SIZE even if the compressor does not support
+ * batching.
+ *
+ * If @pool->nr_reqs is 1, each page is processed sequentially.
+ *
+ * If @pool->nr_reqs is > 1, compression batching is invoked, except if
+ * @nr_pages is 1: if so, we call the fully synchronous non-batching
+ * crypto_acomp API.
+ *
+ * It is assumed that @nr_pages <= @pool->nr_reqs. We could
+ * check this, but don't, for performance reasons. zswap_store() makes
+ * sure of this by design.
+ *
+ * In both cases, if all compressions are successful, the compressed buffers
+ * are stored in zpool.
+ *
+ * A few important changes made to not regress and in fact improve
+ * compression performance with non-batching software compressors, using this
+ * new/batching code:
+ *
+ * 1) acomp_ctx mutex locking:
+ * Earlier, the mutex was only held during compression. With the new code,
+ * [un]locking the mutex per page caused regressions for software
+ * compressors. We now lock the mutex once per batch, which resolved the
+ * regression.
+ *
+ * 2) The prefetchw() and likely()/unlikely() annotations prevent
+ * regressions with software compressors like zstd, and generally improve
+ * non-batching compressors' performance with the batching code by ~7.3%.
+ */
+static bool zswap_compress(struct page *pages[], struct zswap_entry *entries[],
+ unsigned int nr_pages, struct zswap_pool *pool)
{
struct crypto_acomp_ctx *acomp_ctx;
struct scatterlist input, output;
- int comp_ret = 0, alloc_ret = 0;
- unsigned int dlen = PAGE_SIZE;
- unsigned long handle;
- struct zpool *zpool;
+ unsigned int dlens[ZSWAP_MAX_BATCH_SIZE];
+ int errors[ZSWAP_MAX_BATCH_SIZE];
+ struct zpool *zpool = pool->zpool;
+ unsigned int i, j, nr_comps = min(nr_pages, pool->nr_reqs);
+ int err;
gfp_t gfp;
- u8 *dst;
+
+ gfp = GFP_NOWAIT | __GFP_NORETRY | __GFP_HIGHMEM | __GFP_MOVABLE;
acomp_ctx = raw_cpu_ptr(pool->acomp_ctx);
mutex_lock(&acomp_ctx->mutex);
- dst = acomp_ctx->buffers[0];
- sg_init_table(&input, 1);
- sg_set_page(&input, page, PAGE_SIZE, 0);
-
/*
- * We need PAGE_SIZE * 2 here since there maybe over-compression case,
- * and hardware-accelerators may won't check the dst buffer size, so
- * giving the dst buffer with enough length to avoid buffer overflow.
+ * Note:
+ * [i] refers to the incoming batch space and is used to
+ * index into @pages, @entries and @errors.
*/
- sg_init_one(&output, dst, PAGE_SIZE * 2);
- acomp_request_set_params(acomp_ctx->reqs[0], &input, &output, PAGE_SIZE, dlen);
+ for (i = 0; i < nr_pages; i += nr_comps) {
- /*
- * it maybe looks a little bit silly that we send an asynchronous request,
- * then wait for its completion synchronously. This makes the process look
- * synchronous in fact.
- * Theoretically, acomp supports users send multiple acomp requests in one
- * acomp instance, then get those requests done simultaneously. but in this
- * case, zswap actually does store and load page by page, there is no
- * existing method to send the second page before the first page is done
- * in one thread doing zwap.
- * but in different threads running on different cpu, we have different
- * acomp instance, so multiple threads can do (de)compression in parallel.
- */
- comp_ret = crypto_wait_req(crypto_acomp_compress(acomp_ctx->reqs[0]), &acomp_ctx->wait);
- dlen = acomp_ctx->reqs[0]->dlen;
- if (comp_ret)
- goto unlock;
+ if (likely(nr_comps == 1)) {
+ sg_init_table(&input, 1);
+ sg_set_page(&input, pages[i], PAGE_SIZE, 0);
- zpool = pool->zpool;
- gfp = GFP_NOWAIT | __GFP_NORETRY | __GFP_HIGHMEM | __GFP_MOVABLE;
- alloc_ret = zpool_malloc(zpool, dlen, gfp, &handle, page_to_nid(page));
- if (alloc_ret)
- goto unlock;
-
- zpool_obj_write(zpool, handle, dst, dlen);
- entry->handle = handle;
- entry->length = dlen;
-
-unlock:
- if (comp_ret == -ENOSPC || alloc_ret == -ENOSPC)
- zswap_reject_compress_poor++;
- else if (comp_ret)
- zswap_reject_compress_fail++;
- else if (alloc_ret)
- zswap_reject_alloc_fail++;
+ /*
+ * We need PAGE_SIZE * 2 here since there maybe over-compression case,
+ * and hardware-accelerators may won't check the dst buffer size, so
+ * giving the dst buffer with enough length to avoid buffer overflow.
+ */
+ sg_init_one(&output, acomp_ctx->buffers[0], PAGE_SIZE * 2);
+ acomp_request_set_params(acomp_ctx->reqs[0], &input,
+ &output, PAGE_SIZE, PAGE_SIZE);
+
+ errors[i] = crypto_wait_req(crypto_acomp_compress(acomp_ctx->reqs[0]),
+ &acomp_ctx->wait);
+ if (unlikely(errors[i]))
+ goto compress_error;
+ } else if (!crypto_acomp_batch_compress(acomp_ctx->reqs,
+ pages,
+ acomp_ctx->buffers,
+ dlens,
+ errors,
+ nr_pages)) {
+ goto compress_error;
+ }
+
+ /*
+ * All @nr_comps pages were successfully compressed.
+ * Store the pages in zpool.
+ *
+ * Note:
+ * [j] refers to the incoming batch space and is used to
+ * index into @pages, @entries and @errors.
+ * [k] refers to the @acomp_ctx space, as determined by
+ * @pool->nr_reqs, and is used to index into
+ * @acomp_ctx->reqs and @acomp_ctx->buffers.
+ */
+ for (j = i; j < i + nr_comps; ++j) {
+ unsigned int k = j - i;
+ unsigned long handle;
+
+ /*
+ * prefetchw() minimizes cache-miss latency by
+ * moving the zswap entry to the cache before it
+ * is written to; reducing sys time by ~1.5% for
+ * non-batching software compressors.
+ */
+ prefetchw(entries[j]);
+ err = zpool_malloc(zpool, acomp_ctx->reqs[k]->dlen, gfp, &handle,
+ page_to_nid(pages[j]));
+
+ if (unlikely(err)) {
+ if (err == -ENOSPC)
+ zswap_reject_compress_poor++;
+ else
+ zswap_reject_alloc_fail++;
+
+ goto err_unlock;
+ }
+
+ zpool_obj_write(zpool, handle, acomp_ctx->buffers[k], acomp_ctx->reqs[k]->dlen);
+ entries[j]->handle = handle;
+ entries[j]->length = acomp_ctx->reqs[k]->dlen;
+ }
+ } /* finished compress and store nr_pages. */
mutex_unlock(&acomp_ctx->mutex);
- return comp_ret == 0 && alloc_ret == 0;
+ return true;
+
+compress_error:
+ for (j = i; j < i + nr_comps; ++j) {
+ if (errors[j]) {
+ if (errors[j] == -ENOSPC)
+ zswap_reject_compress_poor++;
+ else
+ zswap_reject_compress_fail++;
+ }
+ }
+
+err_unlock:
+ mutex_unlock(&acomp_ctx->mutex);
+ return false;
}
static bool zswap_decompress(struct zswap_entry *entry, struct folio *folio)
@@ -1529,6 +1606,7 @@ static bool zswap_store_pages(struct folio *folio,
struct zswap_pool *pool)
{
struct zswap_entry *entries[ZSWAP_MAX_BATCH_SIZE];
+ struct page *pages[ZSWAP_MAX_BATCH_SIZE];
int node_id = folio_nid(folio);
u8 i, store_fail_idx = 0, nr_pages = end - start;
@@ -1555,12 +1633,11 @@ static bool zswap_store_pages(struct folio *folio,
entries[i]->handle = (unsigned long)ERR_PTR(-EINVAL);
}
- for (i = 0; i < nr_pages; ++i) {
- struct page *page = folio_page(folio, start + i);
+ for (i = 0; i < nr_pages; ++i)
+ pages[i] = folio_page(folio, start + i);
- if (!zswap_compress(page, entries[i], pool))
- goto store_pages_failed;
- }
+ if (!zswap_compress(pages, entries, nr_pages, pool))
+ goto store_pages_failed;
for (i = 0; i < nr_pages; ++i) {
swp_entry_t page_swpentry = page_swap_entry(folio_page(folio, start + i));
--
2.27.0
Powered by blists - more mailing lists