From: Ingo Molnar <mingo@kernel.org>
To: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Cc: mingo@elte.hu, linux-kernel@vger.kernel.org,
josh@joshtriplett.org, heiko.carstens@de.ibm.com,
pascal.chapperon@wanadoo.fr, wfg@linux.intel.com,
C.Emde@osadl.org, mathieu.desnoyers@efficios.com,
dhowells@redhat.com, efault@gmx.de, levinsasha928@gmail.com
Subject: Re: [GIT PULL rcu/next] RCU commits for 3.6
Date: Fri, 6 Jul 2012 16:17:36 +0200 [thread overview]
Message-ID: <20120706141736.GB23400@gmail.com> (raw)
In-Reply-To: <20120706140116.GA17758@linux.vnet.ibm.com>
* Paul E. McKenney <paulmck@linux.vnet.ibm.com> wrote:
> Hello, Ingo,
>
> The major features of this series are:
>
> 1. Preventing latency spikes of more than 200 microseconds for
> kernels built with NR_CPUS=4096, which is reportedly becoming
> the default for some distros. This is a first step, as it does
> not help with systems that actually -have- 4096 CPUs (work on
> this case is in progress, but is not yet ready for mainline).
> This category also includes improving concurrency of rcu_barrier(),
> placed here due to conflicts. Posted to LKML at:
> https://lkml.org/lkml/2012/6/22/381. Note that patches 18-22
> of that series have been defered to 3.7, as they have not yet
> proven themselves to be mainline-ready (and yes, these are the
> ones intended to get rid of RCU's latency spikes for systems
> that actually have 4096 CPUs).
> 2. Updates to documentation and rcutorture fixes, the latter category
> including improvements to rcu_barrier() testing. Posted to LKML at:
> http://lkml.indiana.edu/hypermail/linux/kernel/1206.1/04094.html.
> 3. Miscellaneous fixes posted to LKML at:
> https://lkml.org/lkml/2012/6/22/500, with the exception of the
> last commit, which was posted here:
> http://www.gossamer-threads.com/lists/linux/kernel/1561830
> 4. RCU_FAST_NO_HZ fixes and improvements. Posted to LKML at:
> http://lkml.indiana.edu/hypermail/linux/kernel/1206.1/00006.html
> and http://www.gossamer-threads.com/lists/linux/kernel/1561833.
> The first four patches of the first series went into 3.5 to fix
> a regression.
> 5. Code-style fixes. These were posted to LKML at
> http://lkml.indiana.edu/hypermail/linux/kernel/1205.2/01180.html and
> http://lkml.indiana.edu/hypermail/linux/kernel/1205.2/01181.html.
>
> All of this code has been exposed to -next testing.
>
> These changes are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git rcu/next
>
> Thanx, Paul
>
> -------------------->
> Carsten Emde (1):
> rcu: Prevent uninitialized string in RCU CPU stall info
>
> Paul E. McKenney (48):
> rcu: Control RCU_FANOUT_LEAF from boot-time parameter
> rcu: Four-level hierarchy is no longer experimental
> rcu: Size rcu_node tree from nr_cpu_ids rather than NR_CPUS
> rcu: Prevent excessive line length in RCU_STATE_INITIALIZER()
> rcu: Place pointer to call_rcu() in rcu_data structure
> rcu: Move _rcu_barrier()'s rcu_head structures to rcu_data structures
> rcu: Move rcu_barrier_cpu_count to rcu_state structure
> rcu: Move rcu_barrier_completion to rcu_state structure
> rcu: Move rcu_barrier_mutex to rcu_state structure
> rcu: Remove needless initialization
> rcu: Increase rcu_barrier() concurrency
> rcu: Add tracing for _rcu_barrier()
> rcu: Add rcu_barrier() statistics to debugfs tracing
> rcu: Remove unneeded __rcu_process_callbacks() argument
> rcu: Introduce for_each_rcu_flavor() and use it
> rcu: Use for_each_rcu_flavor() in TREE_RCU tracing
> rcu: RCU_SAVE_DYNTICK code no longer ever dead
> rcu: Update documentation to cover call_srcu() and srcu_barrier().
> rcu: Rationalize ordering of torture_ops list
> rcu: Test srcu_barrier() from rcutorture test suite
> rcu: Fix bug in rcu_barrier() torture test
> rcu: Fix diagnostic-printk typo in rcutorture
> rcu: Make rcutorture fakewriters invoke rcu_barrier()
> rcu: Fix detection of abruptly-ending stall
> rcu: Consolidate duplicate callback-list initialization
> rcu: Add ACCESS_ONCE() to ->qlen accesses
> rcu: Add a gcc-style structure initializer for RCU pointers
> rcu: Use new RCU_POINTER_INITIALIZER for gcc-style initializations
> rcu: Remove return value from RCU_INIT_POINTER()
> key: Remove extraneous parentheses from rcu_assign_keypointer()
> rcu: Remove return value from rcu_assign_pointer()
> rcu: Consolidate tree/tiny __rcu_read_{,un}lock() implementations
> rcu: Remove function versions of __kfree_rcu and __is_kfree_rcu_offset
> rcu: Make __call_rcu() handle invocation from idle
> rcu: Prevent __call_rcu() from invoking RCU core on offline CPUs
> rcu: Split RCU core processing out of __call_rcu()
> rcu: Fix rcu_is_cpu_idle() #ifdef in TINY_RCU
> rcu: Disable preemption in rcu_blocking_is_gp()
> rcu: Add check for CPUs going offline with callbacks queued
> rcu: Dump only the current CPU's buffers for idle-entry/exit warnings
> rcu: The rcu_needs_cpu() function is not a quiescent state
> rcu: Round FAST_NO_HZ lazy timeout to nearest second
> rcu: Fix qlen_lazy breakage
> rcu: Make RCU_FAST_NO_HZ respect nohz= boot parameter
> rcu: Introduce check for callback list/count mismatch
> Merge branches 'bigrtm.2012.07.04a', 'doctorture.2012.07.02a', 'fixes.2012.07.06a' and 'fnh.2012.07.02a' into HEAD
> rcu: Fix code-style issues involving "else"
> rcu: Fix broken strings in RCU's source code.
>
> Documentation/RCU/checklist.txt | 39 ++--
> Documentation/RCU/rcubarrier.txt | 15 +-
> Documentation/RCU/torture.txt | 9 +
> Documentation/RCU/whatisRCU.txt | 6 +-
> Documentation/kernel-parameters.txt | 5 +
> include/linux/init_task.h | 4 +-
> include/linux/key.h | 4 +-
> include/linux/rcupdate.h | 53 ++---
> include/trace/events/rcu.h | 45 ++++
> kernel/rcupdate.c | 44 ++++
> kernel/rcutiny.c | 4 +-
> kernel/rcutiny_plugin.h | 56 +----
> kernel/rcutorture.c | 72 ++++--
> kernel/rcutree.c | 478 ++++++++++++++++++++++------------
> kernel/rcutree.h | 46 ++--
> kernel/rcutree_plugin.h | 223 ++++-------------
> kernel/rcutree_trace.c | 148 ++++++-----
> kernel/time/tick-sched.c | 2 +-
> lib/list_debug.c | 6 +-
> 19 files changed, 669 insertions(+), 590 deletions(-)
Pulled, thanks a lot Paul!
Ingo
prev parent reply other threads:[~2012-07-06 14:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-06 14:01 [GIT PULL rcu/next] RCU commits for 3.6 Paul E. McKenney
2012-07-06 14:17 ` Ingo Molnar [this message]
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=20120706141736.GB23400@gmail.com \
--to=mingo@kernel.org \
--cc=C.Emde@osadl.org \
--cc=dhowells@redhat.com \
--cc=efault@gmx.de \
--cc=heiko.carstens@de.ibm.com \
--cc=josh@joshtriplett.org \
--cc=levinsasha928@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.desnoyers@efficios.com \
--cc=mingo@elte.hu \
--cc=pascal.chapperon@wanadoo.fr \
--cc=paulmck@linux.vnet.ibm.com \
--cc=wfg@linux.intel.com \
/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.