linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Yosry Ahmed <yosryahmed@google.com>
To: Kanchana P Sridhar <kanchana.p.sridhar@intel.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	hannes@cmpxchg.org,  nphamcs@gmail.com, chengming.zhou@linux.dev,
	usamaarif642@gmail.com,  ryan.roberts@arm.com, 21cnbao@gmail.com,
	akpm@linux-foundation.org,  linux-crypto@vger.kernel.org,
	herbert@gondor.apana.org.au,  davem@davemloft.net,
	clabbe@baylibre.com, ardb@kernel.org,  ebiggers@google.com,
	surenb@google.com, kristen.c.accardi@intel.com,
	 wajdi.k.feghali@intel.com, vinodh.gopal@intel.com
Subject: Re: [PATCH v5 12/12] mm: zswap: Compress batching with Intel IAA in zswap_store() of large folios.
Date: Mon, 6 Jan 2025 17:19:58 -0800	[thread overview]
Message-ID: <CAJD7tkYLUXCumH7qZDE63qOUbrj3bxnBbgkkdCVGbvL6R_fS8w@mail.gmail.com> (raw)
In-Reply-To: <20241221063119.29140-13-kanchana.p.sridhar@intel.com>

On Fri, Dec 20, 2024 at 10:31 PM Kanchana P Sridhar
<kanchana.p.sridhar@intel.com> wrote:
>
> zswap_compress_folio() is modified to detect if the pool's acomp_ctx has
> more than one "nr_reqs", which will be the case if the cpu onlining code
> has allocated batching resources in the acomp_ctx based on the queries to
> acomp_has_async_batching() and crypto_acomp_batch_size(). If multiple
> "nr_reqs" are available in the acomp_ctx, it means compress batching can be
> used with a batch-size of "acomp_ctx->nr_reqs".
>
> If compress batching can be used with the given zswap pool,
> zswap_compress_folio() will invoke the newly added zswap_batch_compress()
> procedure to compress and store the folio in batches of
> "acomp_ctx->nr_reqs" pages. The batch size is effectively
> "acomp_ctx->nr_reqs".
>
> zswap_batch_compress() calls crypto_acomp_batch_compress() to compress each
> batch of (up to) "acomp_ctx->nr_reqs" pages. The iaa_crypto driver
> will compress each batch of pages in parallel in the Intel IAA hardware
> with 'async' mode and request chaining.
>
> Hence, zswap_batch_compress() does the same computes for a batch, as
> zswap_compress() does for a page; and returns true if the batch was
> successfully compressed/stored, and false otherwise.
>
> If the pool does not support compress batching, zswap_compress_folio()
> calls zswap_compress() for each individual page in the folio, as before.
>
> Signed-off-by: Kanchana P Sridhar <kanchana.p.sridhar@intel.com>
> ---
>  mm/zswap.c | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++--
>  1 file changed, 105 insertions(+), 4 deletions(-)
>
> diff --git a/mm/zswap.c b/mm/zswap.c
> index 1be0f1807bfc..f336fafe24c4 100644
> --- a/mm/zswap.c
> +++ b/mm/zswap.c
> @@ -1467,17 +1467,118 @@ static void shrink_worker(struct work_struct *w)
>  * main API
>  **********************************/
>
> +static bool zswap_batch_compress(struct folio *folio,
> +                                long index,
> +                                unsigned int batch_size,
> +                                struct zswap_entry *entries[],
> +                                struct zswap_pool *pool,
> +                                struct crypto_acomp_ctx *acomp_ctx)
> +{
> +       int comp_errors[ZSWAP_MAX_BATCH_SIZE] = { 0 };
> +       unsigned int dlens[ZSWAP_MAX_BATCH_SIZE];
> +       struct page *pages[ZSWAP_MAX_BATCH_SIZE];
> +       unsigned int i, nr_batch_pages;
> +       bool ret = true;
> +
> +       nr_batch_pages = min((unsigned int)(folio_nr_pages(folio) - index), batch_size);
> +
> +       for (i = 0; i < nr_batch_pages; ++i) {
> +               pages[i] = folio_page(folio, index + i);
> +               dlens[i] = PAGE_SIZE;
> +       }
> +
> +       mutex_lock(&acomp_ctx->mutex);
> +
> +       /*
> +        * Batch compress @nr_batch_pages. If IAA is the compressor, the
> +        * hardware will compress @nr_batch_pages in parallel.
> +        */
> +       ret = crypto_acomp_batch_compress(
> +               acomp_ctx->reqs,
> +               &acomp_ctx->wait,
> +               pages,
> +               acomp_ctx->buffers,
> +               dlens,
> +               comp_errors,
> +               nr_batch_pages);

I will hold off on reviewing this patch until the acomp interface is
settled, but I am wondering if this can be a vectorization of
zswap_compress() instead, since there's a lot of common code.

> +
> +       if (ret) {
> +               /*
> +                * All batch pages were successfully compressed.
> +                * Store the pages in zpool.
> +                */
> +               struct zpool *zpool = pool->zpool;
> +               gfp_t gfp = __GFP_NORETRY | __GFP_NOWARN | __GFP_KSWAPD_RECLAIM;
> +
> +               if (zpool_malloc_support_movable(zpool))
> +                       gfp |= __GFP_HIGHMEM | __GFP_MOVABLE;
> +
> +               for (i = 0; i < nr_batch_pages; ++i) {
> +                       unsigned long handle;
> +                       char *buf;
> +                       int err;
> +
> +                       err = zpool_malloc(zpool, dlens[i], gfp, &handle);
> +
> +                       if (err) {
> +                               if (err == -ENOSPC)
> +                                       zswap_reject_compress_poor++;
> +                               else
> +                                       zswap_reject_alloc_fail++;
> +
> +                               ret = false;
> +                               break;
> +                       }
> +
> +                       buf = zpool_map_handle(zpool, handle, ZPOOL_MM_WO);
> +                       memcpy(buf, acomp_ctx->buffers[i], dlens[i]);
> +                       zpool_unmap_handle(zpool, handle);
> +
> +                       entries[i]->handle = handle;
> +                       entries[i]->length = dlens[i];
> +               }
> +       } else {
> +               /* Some batch pages had compression errors. */
> +               for (i = 0; i < nr_batch_pages; ++i) {
> +                       if (comp_errors[i]) {
> +                               if (comp_errors[i] == -ENOSPC)
> +                                       zswap_reject_compress_poor++;
> +                               else
> +                                       zswap_reject_compress_fail++;
> +                       }
> +               }
> +       }
> +
> +       mutex_unlock(&acomp_ctx->mutex);
> +
> +       return ret;
> +}
> +
>  static bool zswap_compress_folio(struct folio *folio,
>                                  struct zswap_entry *entries[],
>                                  struct zswap_pool *pool)
>  {
>         long index, nr_pages = folio_nr_pages(folio);
> +       struct crypto_acomp_ctx *acomp_ctx;
> +       unsigned int batch_size;
>
> -       for (index = 0; index < nr_pages; ++index) {
> -               struct page *page = folio_page(folio, index);
> +       acomp_ctx = raw_cpu_ptr(pool->acomp_ctx);
> +       batch_size = acomp_ctx->nr_reqs;
>
> -               if (!zswap_compress(page, entries[index], pool))
> -                       return false;
> +       if ((batch_size > 1) && (nr_pages > 1)) {
> +               for (index = 0; index < nr_pages; index += batch_size) {
> +
> +                       if (!zswap_batch_compress(folio, index, batch_size,
> +                                                 &entries[index], pool, acomp_ctx))
> +                               return false;
> +               }
> +       } else {
> +               for (index = 0; index < nr_pages; ++index) {
> +                       struct page *page = folio_page(folio, index);
> +
> +                       if (!zswap_compress(page, entries[index], pool))
> +                               return false;
> +               }
>         }
>
>         return true;
> --
> 2.27.0
>


  reply	other threads:[~2025-01-07  1:20 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-21  6:31 [PATCH v5 00/12] zswap IAA compress batching Kanchana P Sridhar
2024-12-21  6:31 ` [PATCH v5 01/12] crypto: acomp - Add synchronous/asynchronous acomp request chaining Kanchana P Sridhar
2024-12-21  6:31 ` [PATCH v5 02/12] crypto: acomp - Define new interfaces for compress/decompress batching Kanchana P Sridhar
2024-12-28 11:46   ` Herbert Xu
2025-01-06 17:37     ` Sridhar, Kanchana P
2025-01-06 23:24       ` Yosry Ahmed
2025-01-07  1:36         ` Sridhar, Kanchana P
2025-01-07  1:46           ` Yosry Ahmed
2025-01-07  2:06             ` Herbert Xu
2025-01-07  3:10               ` Yosry Ahmed
2025-01-08  1:38                 ` Herbert Xu
2025-01-08  1:43                   ` Yosry Ahmed
2025-02-16  5:17                 ` Herbert Xu
2025-02-20 17:32                   ` Yosry Ahmed
2025-02-22  6:26                     ` Barry Song
2025-02-22  6:34                       ` Herbert Xu
2025-02-22  6:41                         ` Barry Song
2025-02-22  6:52                           ` Herbert Xu
2025-02-22  7:13                             ` Barry Song
2025-02-22  7:22                               ` Herbert Xu
2025-02-22  8:21                                 ` Barry Song
2025-02-24 21:49                               ` Yosry Ahmed
2025-02-27  3:05                                 ` Barry Song
2025-02-22 12:31                       ` Sergey Senozhatsky
2025-02-22 14:27                         ` Sergey Senozhatsky
2025-02-23  0:14                           ` Herbert Xu
2025-02-23  2:09                             ` Sergey Senozhatsky
2025-02-23  2:52                               ` Herbert Xu
2025-02-23  3:12                                 ` Sergey Senozhatsky
2025-02-23  3:38                                   ` Herbert Xu
2025-02-23  4:02                                     ` Sergey Senozhatsky
2025-02-23  6:04                                       ` Herbert Xu
2025-02-22 16:24                         ` Barry Song
2025-02-23  0:24                         ` Herbert Xu
2025-02-23  1:57                           ` Sergey Senozhatsky
2025-01-07  2:04       ` Herbert Xu
2024-12-21  6:31 ` [PATCH v5 03/12] crypto: iaa - Add an acomp_req flag CRYPTO_ACOMP_REQ_POLL to enable async mode Kanchana P Sridhar
2024-12-21  6:31 ` [PATCH v5 04/12] crypto: iaa - Implement batch_compress(), batch_decompress() API in iaa_crypto Kanchana P Sridhar
2024-12-22  4:07   ` kernel test robot
2024-12-21  6:31 ` [PATCH v5 05/12] crypto: iaa - Make async mode the default Kanchana P Sridhar
2024-12-21  6:31 ` [PATCH v5 06/12] crypto: iaa - Disable iaa_verify_compress by default Kanchana P Sridhar
2024-12-21  6:31 ` [PATCH v5 07/12] crypto: iaa - Re-organize the iaa_crypto driver code Kanchana P Sridhar
2024-12-21  6:31 ` [PATCH v5 08/12] crypto: iaa - Map IAA devices/wqs to cores based on packages instead of NUMA Kanchana P Sridhar
2024-12-21  6:31 ` [PATCH v5 09/12] crypto: iaa - Distribute compress jobs from all cores to all IAAs on a package Kanchana P Sridhar
2024-12-21  6:31 ` [PATCH v5 10/12] mm: zswap: Allocate pool batching resources if the crypto_alg supports batching Kanchana P Sridhar
2025-01-07  0:58   ` Yosry Ahmed
2025-01-08  3:26     ` Sridhar, Kanchana P
2025-01-08  4:16       ` Yosry Ahmed
2024-12-21  6:31 ` [PATCH v5 11/12] mm: zswap: Restructure & simplify zswap_store() to make it amenable for batching Kanchana P Sridhar
2025-01-07  1:16   ` Yosry Ahmed
2025-01-08  3:57     ` Sridhar, Kanchana P
2025-01-08  4:22       ` Yosry Ahmed
2024-12-21  6:31 ` [PATCH v5 12/12] mm: zswap: Compress batching with Intel IAA in zswap_store() of large folios Kanchana P Sridhar
2025-01-07  1:19   ` Yosry Ahmed [this message]
2025-01-07  1:44 ` [PATCH v5 00/12] zswap IAA compress batching Yosry Ahmed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJD7tkYLUXCumH7qZDE63qOUbrj3bxnBbgkkdCVGbvL6R_fS8w@mail.gmail.com \
    --to=yosryahmed@google.com \
    --cc=21cnbao@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=ardb@kernel.org \
    --cc=chengming.zhou@linux.dev \
    --cc=clabbe@baylibre.com \
    --cc=davem@davemloft.net \
    --cc=ebiggers@google.com \
    --cc=hannes@cmpxchg.org \
    --cc=herbert@gondor.apana.org.au \
    --cc=kanchana.p.sridhar@intel.com \
    --cc=kristen.c.accardi@intel.com \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=nphamcs@gmail.com \
    --cc=ryan.roberts@arm.com \
    --cc=surenb@google.com \
    --cc=usamaarif642@gmail.com \
    --cc=vinodh.gopal@intel.com \
    --cc=wajdi.k.feghali@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox