From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: linux-kernel@vger.kernel.org
Cc: mingo@elte.hu, laijs@cn.fujitsu.com, dipankar@in.ibm.com,
akpm@linux-foundation.org, mathieu.desnoyers@polymtl.ca,
josh@joshtriplett.org, niv@us.ibm.com, tglx@linutronix.de,
peterz@infradead.org, rostedt@goodmis.org,
Valdis.Kletnieks@vt.edu, dhowells@redhat.com,
eric.dumazet@gmail.com, darren@dvhart.com, fweisbec@gmail.com,
patches@linaro.org
Subject: [PATCH tip/core/rcu 0/N] v2 RCU commits for 3.4
Date: Fri, 3 Feb 2012 17:44:52 -0800 [thread overview]
Message-ID: <20120204014452.GA29811@linux.vnet.ibm.com> (raw)
Hello!
This is v2 of this patchset. Earlier versions may be found at
https://lkml.org/lkml/2012/2/1/354 and https://lkml.org/lkml/2012/2/2/575.
A big "thank you" to all the reviewers, particularly Josh Triplett, for the
excellent feedback.
This patchset makes RCU more aggressive about entering dyntick-idle mode
in order to improve energy efficiency, converts a few more call_rcu()s to
kfree_rcu(), applies a number of rcutree fixes and cleanups to rcutiny,
removes CONFIG_SMP #ifdef from treercu, allows RCU CPU stall times to
be set via sysfs, add CPU-stall capability to rcutorture, adds more
RCU-abuse diagnostics, updates documentation, and yet more fixes from
the still-ongoing top-to-bottom inspection of RCU with a special focus
on the CPU-hotplug code path. The patches are as follows:
1,26,31,33,41,40.
Documentation upgrades.
2. Improve synchronize_rcu() diagnostics, courtesy of
Frederic Weisbecker.
3. Add lockdep-RCU checks for simple self deadlock, such as calling
synchronize_rcu() while in an RCU read-side critical section.
4. Add a diagnostic for misaligned rcu_head structures. This is
preparation for a call_rcu_lazy() for added energy efficiency.
5,14,37.
Upgrades to CONFIG_RCU_FAST_NO_HZ.
6. Move CONFIG_RCU_TRACE to lib/Kconfig.debug: not for production use.
7-11. Convert several call_rcu() primitives to kfree_rcu().
12,13,15,16,35,38,39.
Fixes to and streamlining of CPU-hotplug handling based on review.
17. Remove dubious single-rcu_node optimization from rcu_start_gp().
18-22. Apply prior rcutree fixes to rcutiny.
23. Catch rcu_preempt_needs_cpu()'s name up with 2011.
24. Check for idle-loop entry while in an RCU read-side critical section.
25. Check for sleeping in TREE_RCU read-side critical sections.
27,36. Remove "#ifdef CONFIG_SMP" from treercu, move code accordingly.
28. Allow RCU CPU stall times to be adjusted at runtime via sysfs.
29. Print scheduling-clock timer information on RCU CPU stall warning
messages if requested by CONFIG_RCU_CPU_STALL_INFO config parameter.
30. Allow rcutorture to be told to hold off CPU-hotplug operations during
early boot.
32. Allow rcutorture to generate CPU stalls in order to test RCU CPU
stall warning facility.
34. Silence module-parameter warnings by converting a couple of
rcutorture's module parameters to bool.
41. Fix misplaced NULL-pointer check in rcutorture.
42. Convert WARN_ON_ONCE() in rcu_lock_acquire() to lockdep, in
part courtesy of Heiko Carstens.
43. Fix botched PTR_ERR() call, courtesy of Julia Lawall.
44. Remove now-redundant check for rcu_head misalignment.
45-47. Fix incorrect uses of RCU from the idle loop. Note that patch
47 will likely be replaced by some event-tracing upgrades from
Steven Rostedt.
For a testing-only version of this patchset from git, please see the
following subject-to-rebase branch:
git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git rcu/next
Thanx, Paul
------------------------------------------------------------------------
Documentation/RCU/torture.txt | 20
b/Documentation/RCU/RTFP.txt | 1902 +++++++++++++++++++++++++++++++++----
b/Documentation/RCU/checklist.txt | 14
b/Documentation/RCU/stallwarn.txt | 87 +
b/Documentation/RCU/torture.txt | 13
b/Documentation/RCU/trace.txt | 36
b/arch/s390/kernel/irq.c | 9
b/drivers/cpuidle/cpuidle.c | 12
b/drivers/target/tcm_fc/tfc_sess.c | 12
b/include/linux/rcupdate.h | 2
b/include/linux/rcutiny.h | 6
b/include/linux/rcutree.h | 1
b/include/linux/sched.h | 3
b/include/linux/srcu.h | 11
b/include/trace/events/rcu.h | 63 -
b/init/Kconfig | 9
b/kernel/lockdep.c | 8
b/kernel/rcu.h | 4
b/kernel/rcupdate.c | 5
b/kernel/rcutiny.c | 4
b/kernel/rcutiny_plugin.h | 5
b/kernel/rcutorture.c | 4
b/kernel/rcutree.c | 8
b/kernel/rcutree.h | 3
b/kernel/rcutree_plugin.h | 4
b/kernel/rcutree_trace.c | 8
b/kernel/srcu.c | 6
b/lib/Kconfig.debug | 10
b/net/ipv4/cipso_ipv4.c | 11
b/net/ipv4/ip_sockglue.c | 7
b/net/mac80211/mesh_pathtbl.c | 8
include/linux/rcupdate.h | 81 +
include/linux/rcutiny.h | 4
include/linux/rcutree.h | 18
include/linux/srcu.h | 4
kernel/rcu.h | 22
kernel/rcutiny.c | 22
kernel/rcutiny_plugin.h | 72 +
kernel/rcutorture.c | 91 +
kernel/rcutree.c | 661 ++++++++----
kernel/rcutree.h | 24
kernel/rcutree_plugin.h | 443 +++++---
kernel/rcutree_trace.c | 6
kernel/srcu.c | 27
lib/Kconfig.debug | 14
45 files changed, 3055 insertions(+), 729 deletions(-)
next reply other threads:[~2012-02-04 1:45 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-04 1:44 Paul E. McKenney [this message]
2012-02-04 1:44 ` [PATCH tip/core/rcu 01/47] rcu: Bring RTFP.txt up to date Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 02/47] rcu: Improve synchronize_rcu() diagnostics Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 03/47] rcu: Add lockdep-RCU checks for simple self-deadlock Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 04/47] rcu: Add diagnostic for misaligned rcu_head structures Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 05/47] rcu: Avoid waking up CPUs having only kfree_rcu() callbacks Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 06/47] rcu: Move RCU_TRACE to lib/Kconfig.debug Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 07/47] s390: Convert call_rcu() to kfree_rcu(), drop ext_int_hash_update() Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 08/47] tcm_fc: Convert call_rcu() to kfree_rcu(), drop ft_tport_rcu_free() Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 09/47] ipv4: Convert call_rcu() to kfree_rcu(), drop opt_kfree_rcu() Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 10/47] ipv4: Convert call_rcu() to kfree_rcu(), drop opt_kfree_rcu Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 11/47] mac80211: Convert call_rcu() to kfree_rcu(), drop mesh_gate_node_reclaim() Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 12/47] rcu: Simplify offline processing Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 13/47] rcu: Make rcutorture flag online/offline failures Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 14/47] rcu: Limit lazy-callback duration Paul E. McKenney
2012-02-04 13:54 ` Frederic Weisbecker
2012-02-04 14:30 ` Paul E. McKenney
2012-02-04 14:32 ` Frederic Weisbecker
2012-02-04 1:44 ` [PATCH tip/core/rcu 15/47] rcu: Check for callback invocation from offline CPUs Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 16/47] rcu: Don't make callbacks go through second full grace period Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 17/47] rcu: Remove single-rcu_node optimization in rcu_start_gp() Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 18/47] rcu: Protect __rcu_read_unlock() against scheduler-using irq handlers Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 19/47] rcu: Streamline code produced by __rcu_read_unlock() Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 20/47] rcu: Prevent RCU callbacks from executing before scheduler initialized Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 21/47] rcu: Inform RCU of irq_exit() activity Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 22/47] rcu: Simplify unboosting checks Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 23/47] rcu: Clean up straggling rcu_preempt_needs_cpu() name Paul E. McKenney
2012-02-04 1:44 ` [PATCH tip/core/rcu 24/47] rcu: Check for idle-loop entry while in RCU read-side critical section Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 25/47] rcu: Make rcu_sleep_check() also check rcu_lock_map Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 26/47] rcu: Note that rcu_access_pointer() can be used for teardown Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 27/47] rcu: Remove #ifdef CONFIG_SMP from TREE_RCU Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 28/47] rcu: Set RCU CPU stall times via sysfs Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 29/47] rcu: Print scheduling-clock information on RCU CPU stall-warning messages Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 30/47] rcutorture: Permit holding off CPU-hotplug operations during boot Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 31/47] rcu: Make documentation give more realistic rcutorture duration Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 32/47] rcu: Add CPU-stall capability to rcutorture Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 33/47] rcu: Update stall-warning documentation Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 34/47] rcu: Make boolean rcutorture parameters be of type "bool" Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 35/47] rcu: Check for illegal use of RCU from offlined CPUs Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 36/47] rcu: Move synchronize_sched_expedited() to rcutree.c Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 37/47] rcu: No interrupt disabling for rcu_prepare_for_idle() Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 38/47] lockdep: Add CPU-idle/offline warning to lockdep-RCU splat Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 39/47] rcu: Rework detection of use of RCU by offline CPUs Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 40/47] rcu: Call out dangers of expedited RCU primitives Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 41/47] rcu: Trace only after NULL-pointer check Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 42/47] rcu: Convert WARN_ON_ONCE() in rcu_lock_acquire() to lockdep Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 43/47] PTR_ERR should be called before its argument is cleared Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 44/47] rcu: Remove redundant check for rcu_head misalignment Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 45/47] rcu: Allow nesting of rcu_idle_enter() and rcu_idle_exit() Paul E. McKenney
2012-02-09 4:07 ` Frederic Weisbecker
2012-02-09 15:26 ` Paul E. McKenney
2012-02-09 15:33 ` Frederic Weisbecker
2012-02-04 1:45 ` [PATCH tip/core/rcu 46/47] rcu: Add RCU_NONIDLE() for idle-loop RCU read-side critical sections Paul E. McKenney
2012-02-04 1:45 ` [PATCH tip/core/rcu 47/47] cpuidle: Inform RCU of " Paul E. McKenney
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=20120204014452.GA29811@linux.vnet.ibm.com \
--to=paulmck@linux.vnet.ibm.com \
--cc=Valdis.Kletnieks@vt.edu \
--cc=akpm@linux-foundation.org \
--cc=darren@dvhart.com \
--cc=dhowells@redhat.com \
--cc=dipankar@in.ibm.com \
--cc=eric.dumazet@gmail.com \
--cc=fweisbec@gmail.com \
--cc=josh@joshtriplett.org \
--cc=laijs@cn.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.desnoyers@polymtl.ca \
--cc=mingo@elte.hu \
--cc=niv@us.ibm.com \
--cc=patches@linaro.org \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.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