Re: [PATCH] padata: allow caller to control queue length

From: Jason A. Donenfeld
Date: Fri Apr 14 2017 - 11:44:59 EST


On Fri, Apr 14, 2017 at 9:57 AM, Steffen Klassert
<steffen.klassert@xxxxxxxxxxx> wrote:
> Why do we need this? As long as we don't have a user that needs a
> different limit, this patch adds just some useless code.

My [not-yet-mainlined] code wants it.

But more compellingly, padata simply isn't a very useful interface if
it contains random limits like that. Different consumers will want
different things. Pcrypt has been the only consumer for years and
years, despite it being in kernel/; it's probably a good idea to
figure out how to make this more attractive in general, since parallel
processing is a useful thing. The 1000 job limit is particularly
annoying for systems with tons and tons of cores; here you'd want the
ability for more jobs to be allowed at a time.

I'm also open to discussing other ways to handle limiting. But a hard
coded random number of 1000 seems wrong.