From: Yue Hu <zbestahu@gmail.com>
To: Gao Xiang <hsiangkao@linux.alibaba.com>
Cc: xiang@kernel.org, linux-erofs@lists.ozlabs.org,
huyue2@yulong.com, zbestahu@163.com
Subject: Re: [PATCH] erofs-utils: add clusterofs zero check to write_uncompressed_extent()
Date: Tue, 17 Aug 2021 22:10:46 +0800 [thread overview]
Message-ID: <20210817221046.000037aa.zbestahu@gmail.com> (raw)
In-Reply-To: <YRu16nuqv+5YkW4H@B-P7TQMD6M-0146.local>
Hi Xiang,
On Tue, 17 Aug 2021 21:13:14 +0800
Gao Xiang <hsiangkao@linux.alibaba.com> wrote:
> Hi Yue,
>
> On Tue, Aug 17, 2021 at 12:06:04PM +0800, Yue Hu wrote:
> > From: Yue Hu <huyue2@yulong.com>
> >
> > No need to reset clusterofs to 0 if it's already 0. Acturally, we also
> > observed that case frequently. Let's avoid it.
> >
> > Signed-off-by: Yue Hu <huyue2@yulong.com>
> > ---
> > lib/compress.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/lib/compress.c b/lib/compress.c
> > index 40723a1..a8ebbc1 100644
> > --- a/lib/compress.c
> > +++ b/lib/compress.c
> > @@ -130,7 +130,7 @@ static int write_uncompressed_extent(struct z_erofs_vle_compress_ctx *ctx,
> > unsigned int count;
> >
> > /* reset clusterofs to 0 if permitted */
> > - if (!erofs_sb_has_lz4_0padding() &&
> > + if (!erofs_sb_has_lz4_0padding() && ctx->clusterofs &&
>
> Also out of curiosity, which means erofs is used without lz4 0padding?
Yes. We are using legacy compression layout now.
> That way is not recommended now anyway, since it forbids erofs in-place
> decompression (only inplace I/O works instead.)
Thanks for the reminding.
>
> Actually we could make clusterofs aligned with 0 for 0padding cases as
> well, but in that cases, we need to recompress the previous pcluster
> with new trimmed size rather than just like this.
Got it.
BTW, I think the information should be useful for me to understand the code further.
Thanks.
>
> Thanks,
> Gao Xiang
>
> > ctx->head >= ctx->clusterofs) {
> > ctx->head -= ctx->clusterofs;
> > *len += ctx->clusterofs;
> > --
> > 1.9.1
next prev parent reply other threads:[~2021-08-17 14:11 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-17 4:06 [PATCH] erofs-utils: add clusterofs zero check to write_uncompressed_extent() Yue Hu
2021-08-17 12:18 ` Gao Xiang
2021-08-17 13:13 ` Gao Xiang
2021-08-17 14:10 ` Yue Hu [this message]
2021-08-17 14:38 ` Gao Xiang
2021-08-18 2:21 ` Yue Hu
2021-08-18 14:06 ` Gao Xiang
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=20210817221046.000037aa.zbestahu@gmail.com \
--to=zbestahu@gmail.com \
--cc=hsiangkao@linux.alibaba.com \
--cc=huyue2@yulong.com \
--cc=linux-erofs@lists.ozlabs.org \
--cc=xiang@kernel.org \
--cc=zbestahu@163.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;
as well as URLs for NNTP newsgroup(s).