From: gao xu <gaoxu2@honor.com>
To: Sergey Senozhatsky <senozhatsky@chromium.org>
Cc: Minchan Kim <minchan@kernel.org>, Jens Axboe <axboe@kernel.dk>,
"linux-block@vger.kernel.org" <linux-block@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
"surenb@google.com" <surenb@google.com>,
zhouxiaolong <zhouxiaolong9@honor.com>
Subject: RE: zram: Optimize LZ4 dictionary compression performance
Date: Wed, 11 Mar 2026 02:55:14 +0000 [thread overview]
Message-ID: <fd276bd5162e4c5bb09e00cddb0cf8f7@honor.com> (raw)
In-Reply-To: <abDDhHV4y68ORzr9@google.com>
> On (26/03/10 08:32), gao xu wrote:
> > +static int lz4_create_cstream(struct zcomp_params *params) {
> > + int ret;
> > +
> > + if (!params->dict || !params->dict_sz)
> > + return 0;
> > +
> > + params->drv_data = kzalloc(sizeof(LZ4_stream_t), GFP_KERNEL);
> > + if (!params->drv_data)
> > + return -ENOMEM;
> > +
> > + ret = LZ4_loadDict((LZ4_stream_t *)params->drv_data,
> > + params->dict, params->dict_sz);
> > + if (ret != params->dict_sz) {
> > + kfree(params->drv_data);
> > + return -EINVAL;
> > + }
> > +
> > + return 0;
> > +}
> >
> > static int lz4_setup_params(struct zcomp_params *params) {
> > if (params->level == ZCOMP_PARAM_NO_LEVEL)
> > params->level = LZ4_ACCELERATION_DEFAULT;
> >
> > - return 0;
> > + return lz4_create_cstream(params);
> > }
>
> [..]
>
> > Should I modify it like this?
>
> Do you need lz4_create_cstream() as a separate function? If not, you can just
> move the code into lz4_setup_params() and remove lz4_create_cstream()?
lz4_create_cstream() is not needed as a separate function. I will address this in v2.
next prev parent reply other threads:[~2026-03-11 2:55 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-10 2:54 zram: Optimize LZ4 dictionary compression performance gao xu
2026-03-10 5:39 ` Sergey Senozhatsky
2026-03-10 6:13 ` Sergey Senozhatsky
2026-03-10 6:22 ` Sergey Senozhatsky
2026-03-10 8:32 ` gao xu
2026-03-11 1:22 ` Sergey Senozhatsky
2026-03-11 2:55 ` gao xu [this message]
2026-03-10 6:15 ` Sergey Senozhatsky
2026-03-11 4:00 ` gao xu
2026-03-11 5:22 ` Sergey Senozhatsky
2026-03-11 1:25 ` Sergey Senozhatsky
2026-03-11 2:56 ` gao xu
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=fd276bd5162e4c5bb09e00cddb0cf8f7@honor.com \
--to=gaoxu2@honor.com \
--cc=akpm@linux-foundation.org \
--cc=axboe@kernel.dk \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=minchan@kernel.org \
--cc=senozhatsky@chromium.org \
--cc=surenb@google.com \
--cc=zhouxiaolong9@honor.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