linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Barry Song <21cnbao@gmail.com>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: davem@davemloft.net, akpm@linux-foundation.org,
	ddstreet@ieee.org,  sjenning@redhat.com,
	vitaly.wool@konsulko.com, linux-crypto@vger.kernel.org,
	 chriscli@google.com, chrisl@kernel.org, hannes@cmpxchg.org,
	 linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	nphamcs@gmail.com,  yosryahmed@google.com,
	zhouchengming@bytedance.com,  Barry Song <v-songbaohua@oppo.com>
Subject: Re: [PATCH 3/3] crypto: scompress: remove memcpy if sg_nents is 1
Date: Fri, 16 Feb 2024 16:49:19 +1300	[thread overview]
Message-ID: <CAGsJ_4wf+PF-HVnyARTuAhS4bEe-SZ_pSKzPLp2YQcHp4Aftiw@mail.gmail.com> (raw)
In-Reply-To: <ZbIwqFJ/uBvG2SQf@gondor.apana.org.au>

On Thu, Jan 25, 2024 at 10:58 PM Herbert Xu <herbert@gondor.apana.org.au> wrote:
>
> On Wed, Jan 03, 2024 at 10:50:06PM +1300, Barry Song wrote:
> >
> > +     if (dst != scratch->dst)
> > +             kunmap_local(dst);
>
> This is missing a flush_dcache_page.

Thanks, Herbert!  I'd rather add flush_dcache_page()
to the below place so that we can avoid one redundant
flush for ENOSPC/ENOMEM case:

        if (!ret) {
                if (!req->dst) {
                        req->dst = sgl_alloc(req->dlen, GFP_ATOMIC, NULL);
                        if (!req->dst) {
                                ret = -ENOMEM;
                                goto out;
                        }
                } else if (req->dlen > dlen) {
                        ret = -ENOSPC;
                        goto out;
                }
                if (dst == scratch->dst) {
                        scatterwalk_map_and_copy(scratch->dst, req->dst, 0,
                                                 req->dlen, 1);
                } else {
+                        flush_dcache_page(sg_page(req->dst));
                }
        }
out:
        if (src != scratch->src)
                kunmap_local(src);
        if (dst != scratch->dst)
                kunmap_local(dst);

>
> It may not matter for zswap, but this is API code and needs to
> work for every single case.
>
> Thanks,
> --
> Email: Herbert Xu <herbert@gondor.apana.org.au>
> Home Page: http://gondor.apana.org.au/~herbert/
> PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
>

Thanks
Barry


      reply	other threads:[~2024-02-16  6:12 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-03  9:50 [PATCH 0/3] mm/zswap & crypto/acompress: remove a couple of memcpy Barry Song
2024-01-03  9:50 ` [PATCH 1/3] crypto: introduce acomp_is_async to expose if a acomp has a scomp backend Barry Song
2024-01-08 22:35   ` Yosry Ahmed
2024-01-09  3:38     ` Barry Song
2024-01-03  9:50 ` [PATCH 2/3] mm/zswap: remove the memcpy if acomp is not asynchronous Barry Song
2024-01-04  0:38   ` Nhat Pham
2024-02-16  3:55     ` Barry Song
2024-01-08 22:36   ` Yosry Ahmed
2024-01-03  9:50 ` [PATCH 3/3] crypto: scompress: remove memcpy if sg_nents is 1 Barry Song
2024-01-25  9:58   ` Herbert Xu
2024-02-16  3:49     ` Barry Song [this message]

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=CAGsJ_4wf+PF-HVnyARTuAhS4bEe-SZ_pSKzPLp2YQcHp4Aftiw@mail.gmail.com \
    --to=21cnbao@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=chriscli@google.com \
    --cc=chrisl@kernel.org \
    --cc=davem@davemloft.net \
    --cc=ddstreet@ieee.org \
    --cc=hannes@cmpxchg.org \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=nphamcs@gmail.com \
    --cc=sjenning@redhat.com \
    --cc=v-songbaohua@oppo.com \
    --cc=vitaly.wool@konsulko.com \
    --cc=yosryahmed@google.com \
    --cc=zhouchengming@bytedance.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