From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
To: "Brandt, Oliver - Lenze" <oliver.brandt@lenze.com>
Cc: "tglx@linutronix.de" <tglx@linutronix.de>,
"peterz@infradead.org" <peterz@infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] irq_work: Avoid unnecessary "IRQ work" interrupts
Date: Wed, 28 Aug 2024 11:54:15 +0200 [thread overview]
Message-ID: <20240828095415.43iwHYdM@linutronix.de> (raw)
In-Reply-To: <20240828093719.3KJWbR6Y@linutronix.de>
On 2024-08-28 11:37:20 [+0200], To Brandt, Oliver - Lenze wrote:
> > Fixes: b4c6f86ec2f6 ('irq_work: Handle some irq_work in a per-CPU thread on PREEMPT_RT')
> > Signed-off-by: Oliver Brandt <oliver.brandt@lenze.com>
> > ---
> > kernel/irq_work.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/kernel/irq_work.c b/kernel/irq_work.c
> > index 2f4fb336dda1..df08b7dde7d5 100644
> > --- a/kernel/irq_work.c
> > +++ b/kernel/irq_work.c
> > @@ -108,7 +108,7 @@ static void __irq_work_queue_local(struct irq_work *work)
> > return;
> >
> > /* If the work is "lazy", handle it from next tick if any */
> > - if (!lazy_work || tick_nohz_tick_stopped())
> > + if (!(lazy_work || rt_lazy_work) || tick_nohz_tick_stopped())
> > irq_work_raise(work);
>
> Looking at this I *think* rt_lazy_work was needed earlier due to
> different code but not anymore. Couldn't you just remove rt_lazy_work
> and set lazy_work in the RT path? That should work.
Actually no. If we merge rt_lazy_work into lazy_work then we would have
the behaviour you have here. But we need irq_work_raise() in order to
irq_work_run();
-> wake_irq_workd();
-> wake_up_process(irq_workd);
If we don't irq_work_raise() here then it will be delayed until the next
tick and we didn't want that if my memory serves me.
> > }
> >
Sebastian
next prev parent reply other threads:[~2024-08-28 9:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-27 15:45 [PATCH] irq_work: Avoid unnecessary "IRQ work" interrupts Brandt, Oliver - Lenze
2024-08-28 9:37 ` Sebastian Andrzej Siewior
2024-08-28 9:54 ` Sebastian Andrzej Siewior [this message]
2024-08-28 13:26 ` Brandt, Oliver - Lenze
2024-08-28 14:02 ` bigeasy
2024-08-28 14:52 ` Brandt, Oliver - Lenze
2024-09-03 9:26 ` bigeasy
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=20240828095415.43iwHYdM@linutronix.de \
--to=bigeasy@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=oliver.brandt@lenze.com \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
/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