All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH tip/core/rcu 0/16] rcu: v2 patches queued for 2.6.35
@ 2010-04-15 18:12 Paul E. McKenney
  2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 01/16] rcu: substitute set_need_resched for sending resched IPIs Paul E. McKenney
                   ` (15 more replies)
  0 siblings, 16 replies; 31+ messages in thread
From: Paul E. McKenney @ 2010-04-15 18:12 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, dvhltc,
	niv, tglx, peterz, rostedt, Valdis.Kletnieks, dhowells,
	eric.dumazet

Hello!

RFC preview of RCU patches queued for 2.6.35, take 2.  Take 1 is at
http://lkml.org/lkml/2010/4/5/134.  Changes to old patches noted in
"[]", new patches flagged with "New".

 1.	substitute set_need_resched for sending resched IPIs
 	This reduces OS jitter.

 2.	make dead code really dead.  [Updated commit message as suggested
 	by Mathieu Desnoyers.]
 3.	move some code from macro to function
 	Cleanups from Lai Jiangshan.

 4.	ignore offline CPUs in last non dyntick idle CPU check
 	Fix to my CONFIG_RCU_FAST_NO_HZ code to handle offline and
	non-existent CPUs, also from Lai Jiangshan.

 5.	fix bogus CONFIG_PROVE_LOCKING in comments to reality
 6.	fix now bogus rcu_scheduler_active comments
 	Comment fixups.

 7.	shrink rcutiny by making synchronize_rcu_bh be inline
 	Shrink TINY_RCU some more.

 8.	rename rcutiny rcu_ctrlblk to rcu_sched_ctrlblk
 	First step towards TINY_PREEMPTIBLE_RCU.

 9.	refactor RCU's context switch handling
 	Reduce the number of needless softirqs.

10.	slim down rcutiny by removing rcu_scheduler_active and friends
	More shrinkage for TINY_RCU

11.	New: enable CPU_STALL_VERBOSE by default.  It will have been in one
	release, so time to enable it.

12.	New: disable CPU stall warnings upon panic

13.	New: print boot-time console messages if RCU configs out of ordinary

14.	New: improve RCU CPU stall-warning messages

15.	New: permit discontiguous cpu_possible_mask CPU numbering

16.	New: v2: reduce the number of spurious RCU_SOFTIRQ invocations

							Thanx, Paul


 b/Documentation/RCU/trace.txt |   35 ++++++------
 b/include/linux/rcupdate.h    |   15 ++---
 b/include/linux/rcutiny.h     |   12 +++-
 b/include/linux/rcutree.h     |    2 
 b/include/linux/srcu.h        |    4 -
 b/kernel/rcupdate.c           |   19 ------
 b/kernel/rcutiny.c            |    9 ---
 b/kernel/rcutiny_plugin.h     |   39 +++++++++++++
 b/kernel/rcutree.c            |   10 +++
 b/kernel/rcutree.h            |    1 
 b/kernel/rcutree_plugin.h     |    2 
 b/kernel/rcutree_trace.c      |    4 +
 b/kernel/sched.c              |    2 
 b/kernel/softirq.c            |    2 
 b/lib/Kconfig.debug           |    2 
 include/linux/rcupdate.h      |   12 +---
 include/linux/rcutiny.h       |   17 +++++
 include/linux/rcutree.h       |    4 +
 kernel/rcutiny.c              |   20 ++++--
 kernel/rcutree.c              |  121 +++++++++++++++++++++++++++++-------------
 kernel/rcutree.h              |    1 
 kernel/rcutree_plugin.h       |   55 +++++++++++++++++--
 22 files changed, 275 insertions(+), 113 deletions(-)

^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2010-04-20 19:18 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-15 18:12 [PATCH tip/core/rcu 0/16] rcu: v2 patches queued for 2.6.35 Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 01/16] rcu: substitute set_need_resched for sending resched IPIs Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 02/16] rcu: make dead code really dead Paul E. McKenney
2010-04-15 23:52   ` Josh Triplett
2010-04-16 14:23     ` Paul E. McKenney
2010-04-16 21:16       ` Josh Triplett
2010-04-16 22:29         ` Paul E. McKenney
2010-04-17  4:53           ` Josh Triplett
2010-04-18  1:12             ` Paul E. McKenney
2010-04-18  3:53               ` Josh Triplett
2010-04-18 13:42                 ` Paul E. McKenney
2010-04-18 21:12                   ` Josh Triplett
2010-04-18 21:54                     ` Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 03/16] rcu: move some code from macro to function Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 04/16] rcu: ignore offline CPUs in last non-dyntick-idle CPU check Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 05/16] rcu: Fix bogus CONFIG_PROVE_LOCKING in comments to reflect reality Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 06/16] rcu: fix now-bogus rcu_scheduler_active comments Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 07/16] rcu: shrink rcutiny by making synchronize_rcu_bh() be inline Paul E. McKenney
2010-04-20 10:11   ` David Howells
2010-04-20 15:05     ` Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 08/16] rcu: rename rcutiny rcu_ctrlblk to rcu_sched_ctrlblk Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 09/16] rcu: refactor RCU's context-switch handling Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 10/16] rcu: slim down rcutiny by removing rcu_scheduler_active and friends Paul E. McKenney
2010-04-20 10:15   ` David Howells
2010-04-20 19:18     ` Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 11/16] rcu: enable CPU_STALL_VERBOSE by default Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 12/16] rcu: disable CPU stall warnings upon panic Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 13/16] rcu: print boot-time console messages if RCU configs out of ordinary Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 14/16] rcu: improve RCU CPU stall-warning messages Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 15/16] rcu: permit discontiguous cpu_possible_mask CPU numbering Paul E. McKenney
2010-04-15 18:13 ` [PATCH RFC tip/core/rcu 16/16] rcu: v2: reduce the number of spurious RCU_SOFTIRQ invocations Paul E. McKenney

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.