From: Yue Hu <zbestahu@gmail.com>
To: Gao Xiang <hsiangkao@linux.alibaba.com>
Cc: linux-erofs@lists.ozlabs.org, Chao Yu <chao@kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
huyue2@coolpad.com, zhangwen@coolpad.com
Subject: Re: [PATCH 2/2] erofs: clean up preload_compressed_pages()
Date: Thu, 3 Mar 2022 12:09:55 +0800 [thread overview]
Message-ID: <20220303120955.00002c81.zbestahu@gmail.com> (raw)
In-Reply-To: <20220301194951.106227-2-hsiangkao@linux.alibaba.com>
On Wed, 2 Mar 2022 03:49:51 +0800
Gao Xiang <hsiangkao@linux.alibaba.com> wrote:
> Rename preload_compressed_pages() as z_erofs_bind_cache()
> since we're try to prepare for adapting folios.
>
> Also, add a comment for the gfp setting. No logic changes.
>
> Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
> ---
> fs/erofs/zdata.c | 18 ++++++++++--------
> 1 file changed, 10 insertions(+), 8 deletions(-)
>
> diff --git a/fs/erofs/zdata.c b/fs/erofs/zdata.c
> index 2673fc105861..59aecf42e45c 100644
> --- a/fs/erofs/zdata.c
> +++ b/fs/erofs/zdata.c
> @@ -219,13 +219,17 @@ struct z_erofs_decompress_frontend {
> static struct page *z_pagemap_global[Z_EROFS_VMAP_GLOBAL_PAGES];
> static DEFINE_MUTEX(z_pagemap_global_lock);
>
> -static void preload_compressed_pages(struct z_erofs_decompress_frontend *fe,
> - struct address_space *mc,
> - enum z_erofs_cache_alloctype type,
> - struct page **pagepool)
> +static void z_erofs_bind_cache(struct z_erofs_decompress_frontend *fe,
> + enum z_erofs_cache_alloctype type,
> + struct page **pagepool)
> {
> + struct address_space *mc = MNGD_MAPPING(EROFS_I_SB(fe->inode));
> struct z_erofs_pcluster *pcl = fe->pcl;
> bool standalone = true;
> + /*
> + * optimistic allocation without direct reclaim since inplace I/O
> + * can be used if low memory otherwise.
> + */
> gfp_t gfp = (mapping_gfp_mask(mc) & ~__GFP_DIRECT_RECLAIM) |
> __GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
> struct page **pages;
> @@ -703,17 +707,15 @@ static int z_erofs_do_read_page(struct z_erofs_decompress_frontend *fe,
> WRITE_ONCE(fe->pcl->compressed_pages[0], fe->map.buf.page);
> fe->mode = COLLECT_PRIMARY_FOLLOWED_NOINPLACE;
> } else {
> - /* preload all compressed pages (can change mode if needed) */
> + /* bind cache first when cached decompression is preferred */
> if (should_alloc_managed_pages(fe, sbi->opt.cache_strategy,
> map->m_la))
> cache_strategy = TRYALLOC;
> else
> cache_strategy = DONTALLOC;
>
> - preload_compressed_pages(fe, MNGD_MAPPING(sbi),
> - cache_strategy, pagepool);
> + z_erofs_bind_cache(fe, cache_strategy, pagepool);
> }
> -
> hitted:
> /*
> * Ensure the current partial page belongs to this submit chain rather
Reviewed-by: Yue Hu <huyue2@coolpad.com>
next prev parent reply other threads:[~2022-03-03 4:11 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-01 19:49 [PATCH 1/2] erofs: get rid of `struct z_erofs_collector' Gao Xiang
2022-03-01 19:49 ` [PATCH 2/2] erofs: clean up preload_compressed_pages() Gao Xiang
2022-03-03 4:09 ` Yue Hu [this message]
2022-03-11 8:20 ` Chao Yu
2022-03-02 4:22 ` [PATCH 1/2] erofs: get rid of `struct z_erofs_collector' Yue Hu
2022-03-02 5:06 ` Gao Xiang
2022-03-02 5:10 ` Yue Hu
2022-03-11 8:07 ` Chao Yu
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=20220303120955.00002c81.zbestahu@gmail.com \
--to=zbestahu@gmail.com \
--cc=chao@kernel.org \
--cc=hsiangkao@linux.alibaba.com \
--cc=huyue2@coolpad.com \
--cc=linux-erofs@lists.ozlabs.org \
--cc=linux-kernel@vger.kernel.org \
--cc=zhangwen@coolpad.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