All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: linux-kernel@vger.kernel.org
Cc: mingo@kernel.org, laijs@cn.fujitsu.com, dipankar@in.ibm.com,
	akpm@linux-foundation.org, mathieu.desnoyers@efficios.com,
	josh@joshtriplett.org, tglx@linutronix.de, peterz@infradead.org,
	rostedt@goodmis.org, dhowells@redhat.com, edumazet@google.com,
	dvhart@linux.intel.com, fweisbec@gmail.com, oleg@redhat.com,
	bobby.prani@gmail.com
Subject: [PATCH tip/core/rcu 0/15] Miscellaneous fixes for 4.2
Date: Tue, 12 May 2015 14:37:56 -0700	[thread overview]
Message-ID: <20150512213756.GA32729@linux.vnet.ibm.com> (raw)

Hello!

This series contains miscellaneous fixes.

1.	Move RCU from the old ACCESS_ONCE() API to READ_ONCE() and
	WRITE_ONCE().

2.	Change uses of rcu_preempt_state to *rcu_state_p, which allows
	easier elimination of a few #ifdefs.

3.	Eliminate a few CONFIG_RCU_BOOST #ifdefs.

4.	Use the "const" tag to tell the compiler that rcu_state_p is
	immutable.

5.	Create an immutable rcu_data_p to the default rcu_data per-CPU
	structures.

6.	Eliminate a few CONFIG_RCU_NOCB_CPU_ALL #ifdefs.

7.	Force wakeup of rcu_gp_kthread at grace-period end in order to
	cause end-of-grace-period processing to happen in a timely fashion,
	thus reducing grace-period latencies.

8.	Use true/false for bool-function return values, courtesy of
	Joe Perches.

9.	Fix PowerPC's smp_mb__before_spinlock().

10.	Prevent RCU CPU stall warnings from ignoring tasks blocking the
	current grace period, courtesy of Patrick Daly.

11.	Add more debugging information when an RCU CPU stall warning is
	caused by stalling of the grace-period kthread.

12.	Make control dependencies work on DEC Alpha and fix documentation.

13.	Avoid deadlocks by having synchronize_sched_expedited() invoke
	wait_rcu_gp() instead of synchronize_sched().

14.	Make the rcu_*_data variables static.

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

							Thanx, Paul

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

 b/Documentation/memory-barriers.txt  |   55 +++++----
 b/arch/powerpc/include/asm/barrier.h |    1 
 b/include/linux/compiler.h           |   16 ++
 b/include/linux/rculist.h            |    6 -
 b/include/linux/rcupdate.h           |   20 +--
 b/include/linux/rcutree.h            |    2 
 b/kernel/events/ring_buffer.c        |    2 
 b/kernel/rcu/rcutorture.c            |    2 
 b/kernel/rcu/srcu.c                  |   10 -
 b/kernel/rcu/tiny_plugin.h           |   12 +-
 b/kernel/rcu/tree.c                  |  199 +++++++++++++++++------------------
 b/kernel/rcu/tree.h                  |    5 
 b/kernel/rcu/tree_plugin.h           |  197 +++++++++++++++++-----------------
 b/kernel/rcu/tree_trace.c            |    6 -
 b/kernel/rcu/update.c                |   30 ++---
 b/kernel/torture.c                   |   26 ++--
 16 files changed, 311 insertions(+), 278 deletions(-)


             reply	other threads:[~2015-05-12 21:48 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-12 21:37 Paul E. McKenney [this message]
2015-05-12 21:38 ` [PATCH tip/core/rcu 01/15] rcu: Convert ACCESS_ONCE() to READ_ONCE() and WRITE_ONCE() Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 02/15] rcu: Convert from rcu_preempt_state to *rcu_state_p Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 03/15] rcu: Eliminate a few RCU_BOOST #ifdefs in favor of IS_ENABLED() Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 04/15] rcu: Tell the compiler that rcu_state_p is immutable Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 05/15] rcu: Create an immutable rcu_data_p pointer to default rcu_data structure Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 06/15] rcu: Eliminate a few CONFIG_RCU_NOCB_CPU_ALL #ifdefs Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 07/15] rcu: Force wakeup of rcu_gp_kthread at grace-period end Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 08/15] rcu: tree_plugin: Use bool function return values of true/false not 1/0 Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 09/15] powerpc: Fix smp_mb__before_spinlock() Paul E. McKenney
2015-05-12 21:38     ` Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 10/15] rcu: Fix missing task information during rcu-preempt stall Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 11/15] rcu: Add more debug info on "kthread starved" RCU CPU stall warnings Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 12/15] smp: Make control dependencies work on Alpha, improve documentation Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 13/15] rcu: Make synchronize_sched_expedited() call wait_rcu_gp() Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 14/15] rcu: Make rcu_*_data variables static Paul E. McKenney
2015-05-12 21:38   ` [PATCH tip/core/rcu 15/15] rcu: Change function declaration to bool Paul E. McKenney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150512213756.GA32729@linux.vnet.ibm.com \
    --to=paulmck@linux.vnet.ibm.com \
    --cc=akpm@linux-foundation.org \
    --cc=bobby.prani@gmail.com \
    --cc=dhowells@redhat.com \
    --cc=dipankar@in.ibm.com \
    --cc=dvhart@linux.intel.com \
    --cc=edumazet@google.com \
    --cc=fweisbec@gmail.com \
    --cc=josh@joshtriplett.org \
    --cc=laijs@cn.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathieu.desnoyers@efficios.com \
    --cc=mingo@kernel.org \
    --cc=oleg@redhat.com \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.