* [PATCH RT 0/2] [ANNOUNCE] 3.4.15-rt25-rc1 stable review
@ 2012-10-26 22:28 Steven Rostedt
2012-10-26 22:28 ` [PATCH RT 1/2] rcu: rcutiny: Prevent RCU stall Steven Rostedt
2012-10-26 22:28 ` [PATCH RT 2/2] Linux 3.4.15-rt25-rc1 Steven Rostedt
0 siblings, 2 replies; 3+ messages in thread
From: Steven Rostedt @ 2012-10-26 22:28 UTC (permalink / raw)
To: linux-kernel, linux-rt-users; +Cc: Thomas Gleixner, Carsten Emde, John Kacur
Dear RT Folks,
This is the RT stable review cycle of patch 3.4.15-rt25-rc1.
Please scream at me if I messed something up. Please test the patches too.
The -rc release will be uploaded to kernel.org and will be deleted when
the final release is out. This is just a review release (or release candidate).
The pre-releases will not be pushed to the git repository, only the
final release is.
If all goes well, this patch will be converted to the next main release
on 10/29/2013.
Enjoy,
-- Steve
To build 3.4.15-rt25-rc1 directly, the following patches should be applied:
http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.4.tar.xz
http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.4.15.xz
http://www.kernel.org/pub/linux/kernel/projects/rt/3.4/patch-3.4.15-rt25-rc1.patch.xz
You can also build from 3.4.15-rt24 by applying the incremental patch:
http://www.kernel.org/pub/linux/kernel/projects/rt/3.4/incr/patch-3.4.15-rt24-rt25-rc1.patch.xz
Changes from 3.4.15-rt24:
---
Steven Rostedt (1):
Linux 3.4.15-rt25-rc1
Thomas Gleixner (1):
rcu: rcutiny: Prevent RCU stall
----
kernel/rcutiny_plugin.h | 2 +-
localversion-rt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH RT 1/2] rcu: rcutiny: Prevent RCU stall
2012-10-26 22:28 [PATCH RT 0/2] [ANNOUNCE] 3.4.15-rt25-rc1 stable review Steven Rostedt
@ 2012-10-26 22:28 ` Steven Rostedt
2012-10-26 22:28 ` [PATCH RT 2/2] Linux 3.4.15-rt25-rc1 Steven Rostedt
1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2012-10-26 22:28 UTC (permalink / raw)
To: linux-kernel, linux-rt-users
Cc: Thomas Gleixner, Carsten Emde, John Kacur, Kristian Lehmann
[-- Attachment #1: 0001-rcu-rcutiny-Prevent-RCU-stall.patch --]
[-- Type: text/plain, Size: 1760 bytes --]
From: Thomas Gleixner <tglx@linutronix.de>
rcu_read_unlock_special() checks in_serving_softirq() and leaves early
when true. On RT this is obviously wrong as softirq processing context
can be preempted and therefor such a task can be on the gp_tasks
list. Leaving early here will leave the task on the list and therefor
block RCU processing forever.
This cannot happen on mainline because softirq processing context
cannot be preempted and therefor this can never happen at all.
In fact this check looks quite questionable in general. Neither irq
context nor softirq processing context in mainline can ever be
preempted in mainline so the special unlock case should not ever be
invoked in such context. Now the only explanation might be a
rcu_read_unlock() being interrupted and therefor leave the rcu nest
count at 0 before the special unlock bit has been cleared. That looks
fragile. At least it's missing a big fat comment. Paul ????
See mainline commits: ec433f0c5 and 8762705a for further enlightment.
Reported-by: Kristian Lehmann <krleit00@hs-esslingen.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: stable-rt@vger.kernel.org
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
kernel/rcutiny_plugin.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/rcutiny_plugin.h b/kernel/rcutiny_plugin.h
index 22ecea0..97e359b 100644
--- a/kernel/rcutiny_plugin.h
+++ b/kernel/rcutiny_plugin.h
@@ -572,7 +572,7 @@ static noinline void rcu_read_unlock_special(struct task_struct *t)
rcu_preempt_cpu_qs();
/* Hardware IRQ handlers cannot block. */
- if (in_irq() || in_serving_softirq()) {
+ if (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_OFFSET)) {
local_irq_restore(flags);
return;
}
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH RT 2/2] Linux 3.4.15-rt25-rc1
2012-10-26 22:28 [PATCH RT 0/2] [ANNOUNCE] 3.4.15-rt25-rc1 stable review Steven Rostedt
2012-10-26 22:28 ` [PATCH RT 1/2] rcu: rcutiny: Prevent RCU stall Steven Rostedt
@ 2012-10-26 22:28 ` Steven Rostedt
1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2012-10-26 22:28 UTC (permalink / raw)
To: linux-kernel, linux-rt-users; +Cc: Thomas Gleixner, Carsten Emde, John Kacur
[-- Attachment #1: 0002-Linux-3.4.15-rt25-rc1.patch --]
[-- Type: text/plain, Size: 287 bytes --]
From: Steven Rostedt <srostedt@redhat.com>
---
localversion-rt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/localversion-rt b/localversion-rt
index b2111a2..792cb5f 100644
--- a/localversion-rt
+++ b/localversion-rt
@@ -1 +1 @@
--rt24
+-rt25-rc1
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-26 22:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-26 22:28 [PATCH RT 0/2] [ANNOUNCE] 3.4.15-rt25-rc1 stable review Steven Rostedt
2012-10-26 22:28 ` [PATCH RT 1/2] rcu: rcutiny: Prevent RCU stall Steven Rostedt
2012-10-26 22:28 ` [PATCH RT 2/2] Linux 3.4.15-rt25-rc1 Steven Rostedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).