public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH tip/core/rcu 0/16] Miscellaneous fixes for 4.3
@ 2015-07-17 22:19 Paul E. McKenney
  2015-07-17 22:20 ` [PATCH tip/core/rcu 01/16] rcu: Drop RCU_USER_QS in favor of NO_HZ_FULL Paul E. McKenney
  0 siblings, 1 reply; 29+ messages in thread
From: Paul E. McKenney @ 2015-07-17 22:19 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, tglx,
	peterz, rostedt, dhowells, edumazet, dvhart, fweisbec, oleg,
	bobby.prani

Hello!

This series contains miscellaneous fixes.

1.	Drop RCU_USER_QS in favor of NO_HZ_FULL.

2.	Deinline rcu_read_lock_sched_held() even in kernels built with
	CONFIG_DEBUG_LOCK_ALLOC=y, courtesy of Denys Vlasenko.

3.	Change srcu_readers_active()'s return type to bool, courtesy
	of Nicholas Mc Guire.

4.	Add RCU-sched flavors get-state/cond-sync functions, namely
	get_state_synchronize_sched() and cond_synchronize_sched().

5.	Hide RCU_NOCB_CPU behind RCU_EXPERT, arriving at fully
	automated Kconfig setup for RCU.

6.	Use WRITE_ONCE in RCU_INIT_POINTER, courtesy of Peter Zijlstra.

7.	Fix obsolete priority-boosting comment.

8.	Create a synchronize_rcu_mult() to allow overlapped synchronous
	grace periods.

9.	Use synchronize_rcu_mult() to make _cpu_down() wait for its
	RCU and RCU-sched grace periods concurrently.

10.	Make rcu_is_watching() really be notrace, courtesy of =
	Alexei Starovoitov.

11.	Rename rcu_lockdep_assert() to RCU_LOCKDEP_WARN().

12.	Fix backwards RCU_LOCKDEP_WARN() in synchronize_rcu_tasks().

13.	Clarify CONFIG_RCU_EQS_DEBUG help text.

14.	Update RCU MAINTAINERS email address, courtesy of Lai Jiangshan.

15.	Make checkpatch.pl warn on expedited RCU grace periods.

16.	Don't disable CPU hotplug during OOM notifiers.

							Thanx, Paul

------------------------------------------------------------------------

 b/Documentation/RCU/whatisRCU.txt  |    2 
 b/MAINTAINERS                      |    6 -
 b/arch/x86/kernel/cpu/mcheck/mce.c |    6 -
 b/arch/x86/kernel/traps.c          |    2 
 b/drivers/base/power/opp.c         |    4 -
 b/include/linux/fdtable.h          |    4 -
 b/include/linux/rcupdate.h         |  144 ++++++++++++++++++++-----------------
 b/include/linux/rcutiny.h          |   10 ++
 b/include/linux/rcutree.h          |    2 
 b/include/linux/types.h            |    3 
 b/init/Kconfig                     |   10 --
 b/kernel/cgroup.c                  |    4 -
 b/kernel/cpu.c                     |   10 +-
 b/kernel/pid.c                     |    5 -
 b/kernel/rcu/rcutorture.c          |    2 
 b/kernel/rcu/srcu.c                |   15 ++-
 b/kernel/rcu/tiny.c                |    8 +-
 b/kernel/rcu/tree.c                |   92 ++++++++++++++++++-----
 b/kernel/rcu/tree_plugin.h         |   13 +--
 b/kernel/rcu/update.c              |   92 ++++++++++++++++++++---
 b/kernel/sched/core.c              |    8 +-
 b/kernel/time/Kconfig              |    2 
 b/kernel/workqueue.c               |   20 ++---
 b/lib/Kconfig.debug                |    2 
 b/scripts/checkpatch.pl            |   19 ++++
 b/security/device_cgroup.c         |    6 -
 26 files changed, 322 insertions(+), 169 deletions(-)


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

end of thread, other threads:[~2015-07-21 20:11 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-17 22:19 [PATCH tip/core/rcu 0/16] Miscellaneous fixes for 4.3 Paul E. McKenney
2015-07-17 22:20 ` [PATCH tip/core/rcu 01/16] rcu: Drop RCU_USER_QS in favor of NO_HZ_FULL Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 02/16] rcu: Deinline rcu_read_lock_sched_held() if DEBUG_LOCK_ALLOC Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 03/16] rcu: Change return type to bool Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 04/16] rcu: Add RCU-sched flavors of get-state and cond-sync Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 05/16] rcu: Hide RCU_NOCB_CPU behind RCU_EXPERT Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 06/16] rcu: Use WRITE_ONCE in RCU_INIT_POINTER Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 07/16] rcu: Fix obsolete priority-boosting comment Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 08/16] rcu: Create a synchronize_rcu_mult() Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 09/16] cpu: Wait for RCU grace periods concurrently Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 10/16] rcu: Make rcu_is_watching() really notrace Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 11/16] rcu: Rename rcu_lockdep_assert() to RCU_LOCKDEP_WARN() Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 12/16] rcu: Fix backwards RCU_LOCKDEP_WARN() in synchronize_rcu_tasks() Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 13/16] rcu: Clarify CONFIG_RCU_EQS_DEBUG help text Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 14/16] rcu: update MAINTAINERS entry Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 15/16] scripts: Make checkpatch.pl warn on expedited RCU grace periods Paul E. McKenney
2015-07-17 22:37     ` Joe Perches
2015-07-21  0:41       ` Paul E. McKenney
2015-07-21  0:48         ` Joe Perches
2015-07-21  1:02           ` Paul E. McKenney
2015-07-21  0:55       ` Steven Rostedt
2015-07-21  1:06         ` Joe Perches
2015-07-21  1:15           ` Steven Rostedt
2015-07-21 17:18             ` Joe Perches
2015-07-21 20:11               ` Paul E. McKenney
2015-07-21  1:29           ` Paul E. McKenney
2015-07-21  1:58             ` Joe Perches
2015-07-21  3:24               ` Paul E. McKenney
2015-07-17 22:20   ` [PATCH tip/core/rcu 16/16] rcu: Don't disable CPU hotplug during OOM notifiers 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