[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <285afb68-64e3-4adf-b6d2-9b13de46a62b@bytedance.com>
Date: Tue, 30 Jan 2024 11:19:26 +0800
From: Chengming Zhou <zhouchengming@...edance.com>
To: Johannes Weiner <hannes@...xchg.org>,
Andrew Morton <akpm@...ux-foundation.org>
Cc: Nhat Pham <nphamcs@...il.com>, Yosry Ahmed <yosryahmed@...gle.com>,
linux-mm@...ck.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 06/20] mm: zswap: rename __zswap_load() to
zswap_decompress()
On 2024/1/30 09:36, Johannes Weiner wrote:
> Signed-off-by: Johannes Weiner <hannes@...xchg.org>
Reviewed-by: Chengming Zhou <zhouchengming@...edance.com>
> ---
> mm/zswap.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/mm/zswap.c b/mm/zswap.c
> index 7a7e8da2b4f8..bdc9f82fe4b9 100644
> --- a/mm/zswap.c
> +++ b/mm/zswap.c
> @@ -1316,7 +1316,7 @@ static int zswap_enabled_param_set(const char *val,
> return ret;
> }
>
> -static void __zswap_load(struct zswap_entry *entry, struct page *page)
> +static void zswap_decompress(struct zswap_entry *entry, struct page *page)
> {
> struct zpool *zpool = zswap_find_zpool(entry);
> struct scatterlist input, output;
> @@ -1411,7 +1411,7 @@ static int zswap_writeback_entry(struct zswap_entry *entry,
> zswap_entry_get(entry);
> spin_unlock(&tree->lock);
>
> - __zswap_load(entry, &folio->page);
> + zswap_decompress(entry, &folio->page);
>
> count_vm_event(ZSWPWB);
> if (entry->objcg)
> @@ -1702,7 +1702,7 @@ bool zswap_load(struct folio *folio)
> spin_unlock(&tree->lock);
>
> if (entry->length)
> - __zswap_load(entry, page);
> + zswap_decompress(entry, page);
> else {
> dst = kmap_local_page(page);
> zswap_fill_page(dst, entry->value);
Powered by blists - more mailing lists