From: Steven Rostedt <rostedt@goodmis.org>
To: Darren Hart <dvhltc@us.ibm.com>
Cc: Ingo Molnar <mingo@elte.hu>, RT <linux-rt-users@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
Thomas Gleixner <tglx@linutronix.de>,
john stultz <johnstul@us.ibm.com>
Subject: Re: [PATCH RT] Only run softirqs from the irq thread if the irq affinity is set to 1 CPU
Date: Wed, 08 Aug 2007 17:45:29 -0400 [thread overview]
Message-ID: <1186609529.14769.8.camel@localhost.localdomain> (raw)
In-Reply-To: <200708081416.27500.dvhltc@us.ibm.com>
On Wed, 2007-08-08 at 14:16 -0700, Darren Hart wrote:
> It seems to me that this patch will reduce the frequency of irqd/softirqd
> starvation, but the core problem still exists: softirq tasks can't migrate to
> other CPUs to perform their work if a higher priority task preempts them.
> I'm wondering if we want to keep special casing things to minimize the
> problem or not - seems to me the worst case is still the same - and isn't the
> worst case the only case that matters (for -rt)?
>
softirq tasks should never migrate to other CPUs. A softirq exists in
every CPU. So if you trigger a softirq on CPU1 it will only run on CPU1.
If a high priority task preempts it, that same softirq can still run on
other CPUS. Only the thread that was preempted wont switch. But that's
the characteristic of softirqs, and that's how people who use them in
development expect them to work.
The problem with the IRQ thread, is that there exists only one. If you
preempt it, it will not run anywhere. Even if we tried to do something
like the softirqs where we put one on every CPU, you still have the IRQ
itself masked, and if the IRQ thread gets preempted, that IRQ wont
happen again on another CPU.
Now, I can see a problem with softirqs still being on one CPU, because
we basically have the same problem if a softirq gets preempted while
holding a mutex. Other softirqs must wait for the RT task that
preempted a softirq finishes. This could cause problems as well.
Especially if the designer of the RT app doesn't understand this.
/me will make a note of this in his RT chapter on "Building Embedded
Linux Systems".
-- Steve
next prev parent reply other threads:[~2007-08-08 21:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-08 20:42 Steven Rostedt
2007-08-08 21:16 ` Darren Hart
2007-08-08 21:45 ` Steven Rostedt [this message]
2007-08-09 9:49 ` Robert de Vries
2007-08-09 12:38 ` Steven Rostedt
2007-08-09 18:20 ` Darren Hart
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=1186609529.14769.8.camel@localhost.localdomain \
--to=rostedt@goodmis.org \
--cc=dvhltc@us.ibm.com \
--cc=johnstul@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rt-users@vger.kernel.org \
--cc=mingo@elte.hu \
--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
Powered by JetHome