lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <2f59d15b63bfe1911261af86991820aadaf54b38.camel@lenze.com>
Date: Wed, 28 Aug 2024 14:52:17 +0000
From: "Brandt, Oliver - Lenze" <oliver.brandt@...ze.com>
To: "bigeasy@...utronix.de" <bigeasy@...utronix.de>
CC: "tglx@...utronix.de" <tglx@...utronix.de>, "peterz@...radead.org"
	<peterz@...radead.org>, "linux-kernel@...r.kernel.org"
	<linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] irq_work: Avoid unnecessary "IRQ work" interrupts

On Wed, 2024-08-28 at 16:02 +0200, bigeasy@...utronix.de wrote:
> CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
> 
> On 2024-08-28 13:26:42 [+0000], Brandt, Oliver - Lenze wrote:
> > Hmm.... I see. What about calling wake_irq_workd() directly; something
> > like
> > 
> >         if (rt_lazy_work)
> >                 wake_irq_workd();
> >         else if (!lazy_work || tick_nohz_tick_stopped())
> >                 irq_work_raise(work);
> 
> this might work but I'm not too sure about it. This will become a
> problem if irq_work_queue() is invoked from a path where scheduling is
> not possible due to recursion or acquired locks.
> 
> How much of a problem is it and how much you gain by doing so?
> 

To be honest I haven't made any measurements. But we have a system with
*very* tight timing constrains: One thing is a 16kHz irq; the other a
4kHz RT-task; both running on an isolated core. So if we assume ~2us
"overhead" for an irq (this should be more or less the time on our
system; Cortex-A9 with 800MHz) we would spend ~1% of our 250us grid for
the additionally irq. Not really something we would like.

Additionally we may get an (additionally) latency of ~2us before our 16-
kHz irq could go to work. Also something we wouldn't like.

What I didn't understand: The "IRQ work" irqs are needed in order to
start the execution of something. Ok. But how was this done before? It
seems that "softirqs" were used for this purpose on kernel v4.14 (don't
ask why we are using such an old version). But I didn't get the idea of
these "softirqs". Are they triggered via "real" irqs (e.g. IPIs)? In
this case we would most likely have the same count of irqs on a kernel
4.14 and a kernel 6.1 (our goal for now; I don't lose hope that even a
v6.6 may be used the next year).

Any ideas about this assumption?

> > Sebastian

Oliver

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ