mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Gao Xiang <hsiangkao@linux.alibaba.com>
To: Hongbo Li <lihongbo22@huawei.com>
Cc: djwong@kernel.org, amir73il@gmail.com, hch@lst.de,
	linux-fsdevel@vger.kernel.org, linux-erofs@lists.ozlabs.org,
	linux-kernel@vger.kernel.org, Chao Yu <chao@kernel.org>,
	brauner@kernel.org
Subject: Re: [PATCH v12 09/10] erofs: support compressed inodes for page cache share
Date: Wed, 7 Jan 2026 14:15:29 +0800	[thread overview]
Message-ID: <ee332277-b19f-4c7c-9114-6fc19878ed43@linux.alibaba.com> (raw)
In-Reply-To: <20251231090118.541061-10-lihongbo22@huawei.com>



On 2025/12/31 17:01, Hongbo Li wrote:
> From: Hongzhen Luo <hongzhen@linux.alibaba.com>
> 
> This patch adds page cache sharing functionality for compressed inodes.
> 
> Signed-off-by: Hongzhen Luo <hongzhen@linux.alibaba.com>
> Signed-off-by: Hongbo Li <lihongbo22@huawei.com>
> ---
>   fs/erofs/zdata.c | 37 ++++++++++++++++++++++++-------------
>   1 file changed, 24 insertions(+), 13 deletions(-)
> 
> diff --git a/fs/erofs/zdata.c b/fs/erofs/zdata.c
> index 65da21504632..2697c703a4c4 100644
> --- a/fs/erofs/zdata.c
> +++ b/fs/erofs/zdata.c
> @@ -493,7 +493,8 @@ enum z_erofs_pclustermode {
>   };
>   
>   struct z_erofs_frontend {
> -	struct inode *const inode;
> +	struct inode *inode;
> +	struct inode *sharedinode;

Let's combine these two lines into one for two related inodes?

	struct inode *inode, *sharedinode;

>   	struct erofs_map_blocks map;
>   	struct z_erofs_bvec_iter biter;
>   
> @@ -508,8 +509,8 @@ struct z_erofs_frontend {
>   	unsigned int icur;
>   };
>   
> -#define Z_EROFS_DEFINE_FRONTEND(fe, i, ho) struct z_erofs_frontend fe = { \
> -	.inode = i, .head = Z_EROFS_PCLUSTER_TAIL, \
> +#define Z_EROFS_DEFINE_FRONTEND(fe, i, si, ho) struct z_erofs_frontend fe = { \
> +	.inode = i, .sharedinode = si, .head = Z_EROFS_PCLUSTER_TAIL, \
>   	.mode = Z_EROFS_PCLUSTER_FOLLOWED, .headoffset = ho }
>   
>   static bool z_erofs_should_alloc_cache(struct z_erofs_frontend *fe)
> @@ -1866,7 +1867,7 @@ static void z_erofs_pcluster_readmore(struct z_erofs_frontend *f,
>   		pgoff_t index = cur >> PAGE_SHIFT;
>   		struct folio *folio;
>   
> -		folio = erofs_grab_folio_nowait(inode->i_mapping, index);
> +		folio = erofs_grab_folio_nowait(f->sharedinode->i_mapping, index);
>   		if (!IS_ERR_OR_NULL(folio)) {
>   			if (folio_test_uptodate(folio))
>   				folio_unlock(folio);
> @@ -1883,8 +1884,10 @@ static void z_erofs_pcluster_readmore(struct z_erofs_frontend *f,
>   
>   static int z_erofs_read_folio(struct file *file, struct folio *folio)
>   {
> -	struct inode *const inode = folio->mapping->host;
> -	Z_EROFS_DEFINE_FRONTEND(f, inode, folio_pos(folio));
> +	struct inode *const sharedinode = folio->mapping->host;

Let's drop useless const annotation:

	struct inode *sharedinode = folio->mapping->host;

> +	bool need_iput;
> +	struct inode *realinode = erofs_real_inode(sharedinode, &need_iput);
> +	Z_EROFS_DEFINE_FRONTEND(f, realinode, sharedinode, folio_pos(folio));
>   	int err;
>   
>   	trace_erofs_read_folio(folio, false);
> @@ -1896,23 +1899,28 @@ static int z_erofs_read_folio(struct file *file, struct folio *folio)
>   	/* if some pclusters are ready, need submit them anyway */
>   	err = z_erofs_runqueue(&f, 0) ?: err;
>   	if (err && err != -EINTR)
> -		erofs_err(inode->i_sb, "read error %d @ %lu of nid %llu",
> -			  err, folio->index, EROFS_I(inode)->nid);
> +		erofs_err(realinode->i_sb, "read error %d @ %lu of nid %llu",
> +			  err, folio->index, EROFS_I(realinode)->nid);
>   
>   	erofs_put_metabuf(&f.map.buf);
>   	erofs_release_pages(&f.pagepool);
> +
> +	if (need_iput)
> +		iput(realinode);
>   	return err;
>   }
>   
>   static void z_erofs_readahead(struct readahead_control *rac)
>   {
> -	struct inode *const inode = rac->mapping->host;
> -	Z_EROFS_DEFINE_FRONTEND(f, inode, readahead_pos(rac));
> +	struct inode *const sharedinode = rac->mapping->host;

Same here.
	struct inode *sharedinode = rac->mapping->host;

Thanks,
Gao Xiang

  reply	other threads:[~2026-01-07  6:15 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-31  9:01 [PATCH v12 00/10] erofs: Introduce page cache sharing feature Hongbo Li
2025-12-31  9:01 ` [PATCH v12 01/10] iomap: stash iomap read ctx in the private field of iomap_iter Hongbo Li
2025-12-31  9:01 ` [PATCH v12 02/10] erofs: hold read context in iomap_iter if needed Hongbo Li
2025-12-31  9:01 ` [PATCH v12 03/10] fs: Export alloc_empty_backing_file Hongbo Li
2025-12-31  9:01 ` [PATCH v12 04/10] erofs: decouple `struct erofs_anon_fs_type` Hongbo Li
2025-12-31  9:01 ` [PATCH v12 05/10] erofs: support user-defined fingerprint name Hongbo Li
2026-01-07  5:51   ` Gao Xiang
2025-12-31  9:01 ` [PATCH v12 06/10] erofs: support domain-specific page cache share Hongbo Li
2025-12-31  9:01 ` [PATCH v12 07/10] erofs: introduce the page cache share feature Hongbo Li
2026-01-07  6:08   ` Gao Xiang
2026-01-07  6:48     ` Hongbo Li
2026-01-07  6:56       ` Gao Xiang
2026-01-07  7:17         ` Hongbo Li
2026-01-07  7:27           ` Gao Xiang
2026-01-07  7:32             ` Hongbo Li
2026-01-07  7:53               ` Gao Xiang
2026-01-07  8:51                 ` Hongbo Li
2026-01-08 12:20     ` Hongbo Li
2026-01-08 12:32       ` Gao Xiang
2025-12-31  9:01 ` [PATCH v12 08/10] erofs: support unencoded inodes for page cache share Hongbo Li
2026-01-07  6:12   ` Gao Xiang
2026-01-07  6:50     ` Hongbo Li
2025-12-31  9:01 ` [PATCH v12 09/10] erofs: support compressed " Hongbo Li
2026-01-07  6:15   ` Gao Xiang [this message]
2025-12-31  9:01 ` [PATCH v12 10/10] erofs: implement .fadvise " Hongbo Li

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=ee332277-b19f-4c7c-9114-6fc19878ed43@linux.alibaba.com \
    --to=hsiangkao@linux.alibaba.com \
    --cc=amir73il@gmail.com \
    --cc=brauner@kernel.org \
    --cc=chao@kernel.org \
    --cc=djwong@kernel.org \
    --cc=hch@lst.de \
    --cc=lihongbo22@huawei.com \
    --cc=linux-erofs@lists.ozlabs.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /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

all inboxes | Powered by JetHome®