public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH tip/core/rcu 0/4] Josh and Ingo review feedback and Bloatwatch RCU
@ 2009-09-23 16:50 Paul E. McKenney
  2009-09-23 16:50 ` [PATCH tip/core/rcu 1/4] rcu: Apply review feedback from Josh Triplett, part 1 Paul E. McKenney
                   ` (4 more replies)
  0 siblings, 5 replies; 15+ messages in thread
From: Paul E. McKenney @ 2009-09-23 16:50 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, dvhltc,
	niv, tglx, peterz, rostedt, Valdis.Kletnieks, dhowells

This patch set applies two sets of review feedback from Josh Triplett
and checkpatch feedback from Ingo Molnar.  It also contains a forward-port
of Bloatwatch RCU, courtesy of David Howells.

This series is a respin of http://lkml.org/lkml/2009/9/22/554, including
improved changelogs and Peter Zijlstra's Acked-by for the first two
patches in the series.

 b/include/linux/hardirq.h  |   24 ++++
 b/include/linux/rcupdate.h |    4 
 b/include/linux/rcutiny.h  |  103 ++++++++++++++++++
 b/include/linux/rcutree.h  |    1 
 b/init/Kconfig             |    9 +
 b/init/main.c              |    1 
 b/kernel/Makefile          |    1 
 b/kernel/rcupdate.c        |    3 
 b/kernel/rcutiny.c         |  246 ++++++++++++++++++++++++++++++++++++++++++++-
 b/kernel/rcutorture.c      |    4 
 b/kernel/rcutree.c         |   29 +++--
 b/kernel/rcutree.h         |    6 -
 b/kernel/rcutree_plugin.h  |   51 ++++-----
 b/kernel/rcutree_trace.c   |   13 +-
 include/linux/rcupdate.h   |    6 +
 include/linux/rcutree.h    |   12 +-
 kernel/rcupdate.c          |    4 
 kernel/rcutree.c           |   95 ++++++-----------
 kernel/rcutree.h           |   57 ++++++++--
 kernel/rcutree_plugin.h    |   24 +++-
 20 files changed, 557 insertions(+), 136 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [PATCH tip/core/rcu 0/4] Josh and Ingo review feedback and bloatwatch RCU
@ 2009-09-22 22:24 Paul E. McKenney
  2009-09-23  6:45 ` Peter Zijlstra
  2009-09-23 19:04 ` Josh Triplett
  0 siblings, 2 replies; 15+ messages in thread
From: Paul E. McKenney @ 2009-09-22 22:24 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, dvhltc,
	niv, tglx, peterz, rostedt, Valdis.Kletnieks, dhowells

This patch set applies two sets of review feedback from Josh Triplett and
checkpatch feedback from Ingo Molnar.  It also contains a forward-port
of Bloatwatch RCU, courtesy of David Howells.

 b/include/linux/hardirq.h  |   24 ++++
 b/include/linux/rcupdate.h |    4 
 b/include/linux/rcutiny.h  |  103 ++++++++++++++++++
 b/include/linux/rcutree.h  |    1 
 b/init/Kconfig             |    9 +
 b/init/main.c              |    1 
 b/kernel/Makefile          |    1 
 b/kernel/rcupdate.c        |    3 
 b/kernel/rcutiny.c         |  246 ++++++++++++++++++++++++++++++++++++++++++++-
 b/kernel/rcutorture.c      |    4 
 b/kernel/rcutree.c         |   29 +++--
 b/kernel/rcutree.h         |    6 -
 b/kernel/rcutree_plugin.h  |   51 ++++-----
 b/kernel/rcutree_trace.c   |   13 +-
 include/linux/rcupdate.h   |    6 +
 include/linux/rcutree.h    |   12 +-
 kernel/rcupdate.c          |    4 
 kernel/rcutree.c           |   95 ++++++-----------
 kernel/rcutree.h           |   57 ++++++++--
 kernel/rcutree_plugin.h    |   24 +++-
 20 files changed, 557 insertions(+), 136 deletions(-)

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

end of thread, other threads:[~2009-10-05 19:11 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-23 16:50 [PATCH tip/core/rcu 0/4] Josh and Ingo review feedback and Bloatwatch RCU Paul E. McKenney
2009-09-23 16:50 ` [PATCH tip/core/rcu 1/4] rcu: Apply review feedback from Josh Triplett, part 1 Paul E. McKenney
2009-09-23 19:13   ` [tip:core/urgent] rcu: Clean up code based on review feedback from Josh Triplett tip-bot for Paul E. McKenney
2009-09-23 16:50 ` [PATCH tip/core/rcu 2/4] rcu: Apply review feedback from Josh Triplett, part 2 Paul E. McKenney
2009-09-23 19:13   ` [tip:core/urgent] rcu: Clean up code based on " tip-bot for Paul E. McKenney
2009-09-23 16:50 ` [PATCH tip/core/rcu 3/4] rcu: Apply Ingo's checkpatch feedback Paul E. McKenney
2009-09-23 19:13   ` [tip:core/urgent] rcu: Clean up code to address " tip-bot for Paul E. McKenney
2009-09-23 16:50 ` [PATCH tip/core/rcu 4/4] rcu: The Bloatwatch Edition, v6 Paul E. McKenney
2009-09-23 19:13   ` [tip:core/urgent] rcu-tiny: " tip-bot for Paul E. McKenney
2009-10-05 19:10   ` [tip:core/rcu] " tip-bot for Paul E. McKenney
2009-09-23 19:10 ` [PATCH tip/core/rcu 0/4] Josh and Ingo review feedback and Bloatwatch RCU Josh Triplett
  -- strict thread matches above, loose matches on Subject: below --
2009-09-22 22:24 [PATCH tip/core/rcu 0/4] Josh and Ingo review feedback and bloatwatch RCU Paul E. McKenney
2009-09-23  6:45 ` Peter Zijlstra
2009-09-23 13:21   ` Paul E. McKenney
2009-09-23 19:04 ` Josh Triplett

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