[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CACOAw_zBi_TnOmqLZwBF9Zdd=0m7EkRP9M210BOrabh3L=7bqQ@mail.gmail.com>
Date: Tue, 21 Jun 2022 09:10:13 -0700
From: Daeho Jeong <daeho43@...il.com>
To: Gao Xiang <hsiangkao@...ux.alibaba.com>
Cc: linux-kernel@...r.kernel.org,
linux-f2fs-devel@...ts.sourceforge.net, kernel-team@...roid.com,
Daeho Jeong <daehojeong@...gle.com>
Subject: Re: [f2fs-dev] [PATCH 2/2] f2fs: handle decompress only post
processing in softirq
On Mon, Jun 20, 2022 at 5:58 PM Gao Xiang <hsiangkao@...ux.alibaba.com> wrote:
>
> On Mon, Jun 20, 2022 at 10:38:43AM -0700, Daeho Jeong wrote:
> > From: Daeho Jeong <daehojeong@...gle.com>
> >
> > Now decompression is being handled in workqueue and it makes read I/O
> > latency non-deterministic, because of the non-deterministic scheduling
> > nature of workqueues. So, I made it handled in softirq context only if
> > possible, not in low memory devices, since this modification will
> > maintain decompresion related memory a little longer.
> >
>
> Again, I don't think this method scalable. Since you already handle
> all decompression algorithms in this way. Laterly, I wonder if you'd
> like to handle all:
> - decompression algorithms;
> - verity algorithms;
> - decrypt algorithms;
>
> in this way, regardless of slow decompression algorithms, that would be a
> long latency and CPU overhead of softirq context. This is my last words
> on this, I will not talk anymore.
>
> Thanks,
> Gao Xiang
I understand what you're worried about. However, verity cannot be
inlined because of its nature triggering I/Os. Except that, other twos
are almost inducing overhead comparable to memcpy. Still, decrypt part
is done in a H/W way mostly these days, though.
Thanks,
Powered by blists - more mailing lists