diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-19 20:12:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-20 13:10:18 -0400 |
commit | 5928a2b60cfdbad730f93696acab142d0b607280 (patch) | |
tree | 49bb21c9219673e61bad7a7c9202c7f25f5fe1be /lib | |
parent | 5ed59af85077d28875a3a137b21933aaf1b4cd50 (diff) | |
parent | bdd4431c8d071491a68a65d9457996f222b5ecd3 (diff) |
Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull RCU changes for v3.4 from Ingo Molnar. The major features of this
series are:
- making RCU more aggressive about entering dyntick-idle mode in order
to improve energy efficiency
- converting a few more call_rcu()s to kfree_rcu()s
- applying a number of rcutree fixes and cleanups to rcutiny
- removing CONFIG_SMP #ifdefs from treercu
- allowing RCU CPU stall times to be set via sysfs
- adding CPU-stall capability to rcutorture
- adding more RCU-abuse diagnostics
- updating documentation
- fixing yet more issues located by the still-ongoing top-to-bottom
inspection of RCU, this time with a special focus on the CPU-hotplug
code path.
* 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (48 commits)
rcu: Stop spurious warnings from synchronize_sched_expedited
rcu: Hold off RCU_FAST_NO_HZ after timer posted
rcu: Eliminate softirq-mediated RCU_FAST_NO_HZ idle-entry loop
rcu: Add RCU_NONIDLE() for idle-loop RCU read-side critical sections
rcu: Allow nesting of rcu_idle_enter() and rcu_idle_exit()
rcu: Remove redundant check for rcu_head misalignment
PTR_ERR should be called before its argument is cleared.
rcu: Convert WARN_ON_ONCE() in rcu_lock_acquire() to lockdep
rcu: Trace only after NULL-pointer check
rcu: Call out dangers of expedited RCU primitives
rcu: Rework detection of use of RCU by offline CPUs
lockdep: Add CPU-idle/offline warning to lockdep-RCU splat
rcu: No interrupt disabling for rcu_prepare_for_idle()
rcu: Move synchronize_sched_expedited() to rcutree.c
rcu: Check for illegal use of RCU from offlined CPUs
rcu: Update stall-warning documentation
rcu: Add CPU-stall capability to rcutorture
rcu: Make documentation give more realistic rcutorture duration
rcutorture: Permit holding off CPU-hotplug operations during boot
rcu: Print scheduling-clock information on RCU CPU stall-warning messages
...
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 8745ac7d1f75..d27a2aa3e815 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -927,6 +927,30 @@ config RCU_CPU_STALL_VERBOSE | |||
927 | 927 | ||
928 | Say Y if you want to enable such checks. | 928 | Say Y if you want to enable such checks. |
929 | 929 | ||
930 | config RCU_CPU_STALL_INFO | ||
931 | bool "Print additional diagnostics on RCU CPU stall" | ||
932 | depends on (TREE_RCU || TREE_PREEMPT_RCU) && DEBUG_KERNEL | ||
933 | default n | ||
934 | help | ||
935 | For each stalled CPU that is aware of the current RCU grace | ||
936 | period, print out additional per-CPU diagnostic information | ||
937 | regarding scheduling-clock ticks, idle state, and, | ||
938 | for RCU_FAST_NO_HZ kernels, idle-entry state. | ||
939 | |||
940 | Say N if you are unsure. | ||
941 | |||
942 | Say Y if you want to enable such diagnostics. | ||
943 | |||
944 | config RCU_TRACE | ||
945 | bool "Enable tracing for RCU" | ||
946 | depends on DEBUG_KERNEL | ||
947 | help | ||
948 | This option provides tracing in RCU which presents stats | ||
949 | in debugfs for debugging RCU implementation. | ||
950 | |||
951 | Say Y here if you want to enable RCU tracing | ||
952 | Say N if you are unsure. | ||
953 | |||
930 | config KPROBES_SANITY_TEST | 954 | config KPROBES_SANITY_TEST |
931 | bool "Kprobes sanity tests" | 955 | bool "Kprobes sanity tests" |
932 | depends on DEBUG_KERNEL | 956 | depends on DEBUG_KERNEL |