public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH tip/core/rcu 0/23] v3 patches queued for 2.6.35
@ 2010-04-20 21:44 Paul E. McKenney
  2010-04-20 21:44 ` [PATCH tip/core/rcu 01/23] rcu: substitute set_need_resched for sending resched IPIs Paul E. McKenney
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Paul E. McKenney @ 2010-04-20 21:44 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 3, now ready for
-tip inclusion.  Take 2 is at http://lkml.org/lkml/2010/4/15/324.
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.
 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.	enable CPU_STALL_VERBOSE by default.  It will have been in one
	release, so time to enable it.

12.	disable CPU stall warnings upon panic

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

14.	improve RCU CPU stall-warning messages

15.	permit discontiguous cpu_possible_mask CPU numbering

16.	v2: reduce the number of spurious RCU_SOFTIRQ invocations
	[Original from Lai Jiangshan]

17.	New: improve the RCU CPU-stall-warning documentation

18.	New: debugobjects transition check
19.	New: introduce rcu_head_init_on_stack
20.	New: remove all non-on-stack rcu_head initializations
21.	New: remove rcu_head initializers
22.	New: Add debug RCU head objects
	Debug-objects-based rcu_head checking from Mathieu Desnoyers

23.	New: make SRCU usable in modules
	[From Lai Jiangshan]

							Thanx, Paul

 b/Documentation/RCU/stallwarn.txt             |   94 ++++++++++++----
 b/Documentation/RCU/trace.txt                 |   35 +++---
 b/arch/powerpc/mm/pgtable.c                   |    1 
 b/block/cfq-iosched.c                         |    1 
 b/block/genhd.c                               |    1 
 b/drivers/staging/batman-adv/hard-interface.c |    1 
 b/fs/file.c                                   |    3 
 b/fs/fs-writeback.c                           |   31 ++++-
 b/fs/partitions/check.c                       |    1 
 b/include/linux/debugobjects.h                |   11 +
 b/include/linux/init_task.h                   |    1 
 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/rcutorture.c                         |    2 
 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 
 b/lib/debugobjects.c                          |   59 +++++++++-
 b/mm/backing-dev.c                            |    1 
 b/mm/slob.c                                   |    1 
 b/security/selinux/avc.c                      |    1 
 b/security/selinux/netnode.c                  |    2 
 include/linux/rcupdate.h                      |   75 ++++++++++---
 include/linux/rcutiny.h                       |   17 ++
 include/linux/rcutree.h                       |    4 
 include/linux/srcu.h                          |    2 
 kernel/rcupdate.c                             |  149 ++++++++++++++++++++++++++
 kernel/rcutiny.c                              |   28 +++-
 kernel/rcutree.c                              |  127 +++++++++++++++-------
 kernel/rcutree.h                              |    1 
 kernel/rcutree_plugin.h                       |   55 ++++++++-
 lib/Kconfig.debug                             |    6 +
 41 files changed, 669 insertions(+), 164 deletions(-)

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

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

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-20 21:44 [PATCH tip/core/rcu 0/23] v3 patches queued for 2.6.35 Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 01/23] rcu: substitute set_need_resched for sending resched IPIs Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 02/23] rcu: make dead code really dead Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 03/23] rcu: move some code from macro to function Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 04/23] rcu: ignore offline CPUs in last non-dyntick-idle CPU check Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 05/23] rcu: Fix bogus CONFIG_PROVE_LOCKING in comments to reflect reality Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 06/23] rcu: fix now-bogus rcu_scheduler_active comments Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 07/23] rcu: shrink rcutiny by making synchronize_rcu_bh() be inline Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 08/23] rcu: rename rcutiny rcu_ctrlblk to rcu_sched_ctrlblk Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 09/23] rcu: refactor RCU's context-switch handling Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 10/23] rcu: slim down rcutiny by removing rcu_scheduler_active and friends Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 11/23] rcu: enable CPU_STALL_VERBOSE by default Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 12/23] rcu: disable CPU stall warnings upon panic Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 13/23] rcu: print boot-time console messages if RCU configs out of ordinary Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 14/23] rcu: improve RCU CPU stall-warning messages Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 15/23] rcu: permit discontiguous cpu_possible_mask CPU numbering Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 16/23] rcu: v2: reduce the number of spurious RCU_SOFTIRQ invocations Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 17/23] rcu: improve the RCU CPU-stall warning documentation Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 18/23] Debugobjects transition check Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 19/23] rcu head introduce rcu head init on stack Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 20/23] remove all rcu head initializations, except on_stack initializations Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 21/23] rcu head remove init Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 22/23] tree/tiny rcu: Add debug RCU head objects (v5) Paul E. McKenney
2010-04-20 21:44 ` [PATCH tip/core/rcu 23/23] rcu: make SRCU usable in modules Paul E. McKenney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox