* [GIT PULL rcu/next] RCU commits for 3.9
@ 2013-02-04 17:18 Paul E. McKenney
2013-02-04 18:07 ` Ingo Molnar
2013-02-07 11:21 ` Lai Jiangshan
0 siblings, 2 replies; 12+ messages in thread
From: Paul E. McKenney @ 2013-02-04 17:18 UTC (permalink / raw)
To: mingo
Cc: linux-kernel, josh, rostedt, rbraun, zhong, markus, sasha.levin,
cody, dave, fweisbec, akpm, tglx
Hello, Ingo,
The major features of this series are:
1. Changes to rcutorture and to RCU documentation. Posted to LKML at
https://lkml.org/lkml/2013/1/26/188.
2. Enhancements to uniprocessor handling in tiny RCU. Posted to LKML
at https://lkml.org/lkml/2013/1/27/2.
3. Tag RCU callbacks with grace-period number to simplify callback
advancement. Posted to LKML at https://lkml.org/lkml/2013/1/26/203.
4. Miscellaneous fixes. Posted to LKML at
https://lkml.org/lkml/2013/1/26/204.
All of these commits have been subject 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
--------------------->
Cody P Schafer (1):
rcu: Correct 'optimized' to 'optimize' in header comment
Dave Hansen (1):
rcu: Consolidate debugging Kconfig options
Frederic Weisbecker (1):
context_tracking: Add comments on interface and internals
Josh Triplett (1):
rcu: Make rcu_is_cpu_rrupt_from_idle helper functions static
Li Zhong (2):
rcu: Use new nesting value for rcu_dyntick trace in rcu_eqs_enter_common
rcu: Remove unused code originally used for context tracking
Paul E. McKenney (11):
tracing: Export trace_clock_local()
rcu: Reduce rcutorture tracing
rcu: Fix blimit type for trace_rcu_batch_start()
rcu: Silence compiler array out-of-bounds false positive
rcu: Tag callback lists with corresponding grace-period number
rcu: Trace callback acceleration
rcu: Remove obsolete Kconfig option from comment
rcu: Provide RCU CPU stall warnings for tiny RCU
rcu: Allow TREE_PREEMPT_RCU on UP systems
rcu: Make rcutorture's shuffler task shuffle recently added tasks
Merge branches 'doctorture.2013.01.29a', 'fixes.2013.01.26a', 'tagcb.2013.01.24a' and 'tiny.2013.01.29b' into HEAD
Richard Braun (1):
Documentation: Memory barrier semantics of atomic_xchg()
Sasha Levin (1):
rcutorture: Don't compare ptr with 0
Documentation/atomic_ops.txt | 2 +
Documentation/memory-barriers.txt | 1 +
include/linux/rcupdate.h | 15 ++-
include/trace/events/rcu.h | 31 +++--
init/Kconfig | 12 ++-
kernel/context_tracking.c | 75 +++++++++--
kernel/rcu.h | 7 +
kernel/rcupdate.c | 60 ++++++++-
kernel/rcutiny.c | 8 +-
kernel/rcutiny_plugin.h | 56 ++++++++
kernel/rcutorture.c | 57 +++++++--
kernel/rcutree.c | 260 ++++++++++++++++++++++++++-----------
kernel/rcutree.h | 11 +--
kernel/trace/trace_clock.c | 1 +
lib/Kconfig.debug | 117 +++++++++--------
15 files changed, 528 insertions(+), 185 deletions(-)
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-04 17:18 [GIT PULL rcu/next] RCU commits for 3.9 Paul E. McKenney
@ 2013-02-04 18:07 ` Ingo Molnar
2013-02-04 19:30 ` Ingo Molnar
2013-02-07 11:21 ` Lai Jiangshan
1 sibling, 1 reply; 12+ messages in thread
From: Ingo Molnar @ 2013-02-04 18:07 UTC (permalink / raw)
To: Paul E. McKenney
Cc: mingo, linux-kernel, josh, rostedt, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
* Paul E. McKenney <paulmck@linux.vnet.ibm.com> wrote:
> Hello, Ingo,
>
> The major features of this series are:
>
> 1. Changes to rcutorture and to RCU documentation. Posted to LKML at
> https://lkml.org/lkml/2013/1/26/188.
>
> 2. Enhancements to uniprocessor handling in tiny RCU. Posted to LKML
> at https://lkml.org/lkml/2013/1/27/2.
>
> 3. Tag RCU callbacks with grace-period number to simplify callback
> advancement. Posted to LKML at https://lkml.org/lkml/2013/1/26/203.
>
> 4. Miscellaneous fixes. Posted to LKML at
> https://lkml.org/lkml/2013/1/26/204.
>
> All of these commits have been subject 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
>
> --------------------->
>
> Cody P Schafer (1):
> rcu: Correct 'optimized' to 'optimize' in header comment
>
> Dave Hansen (1):
> rcu: Consolidate debugging Kconfig options
>
> Frederic Weisbecker (1):
> context_tracking: Add comments on interface and internals
>
> Josh Triplett (1):
> rcu: Make rcu_is_cpu_rrupt_from_idle helper functions static
>
> Li Zhong (2):
> rcu: Use new nesting value for rcu_dyntick trace in rcu_eqs_enter_common
> rcu: Remove unused code originally used for context tracking
>
> Paul E. McKenney (11):
> tracing: Export trace_clock_local()
> rcu: Reduce rcutorture tracing
> rcu: Fix blimit type for trace_rcu_batch_start()
> rcu: Silence compiler array out-of-bounds false positive
> rcu: Tag callback lists with corresponding grace-period number
> rcu: Trace callback acceleration
> rcu: Remove obsolete Kconfig option from comment
> rcu: Provide RCU CPU stall warnings for tiny RCU
> rcu: Allow TREE_PREEMPT_RCU on UP systems
> rcu: Make rcutorture's shuffler task shuffle recently added tasks
> Merge branches 'doctorture.2013.01.29a', 'fixes.2013.01.26a', 'tagcb.2013.01.24a' and 'tiny.2013.01.29b' into HEAD
>
> Richard Braun (1):
> Documentation: Memory barrier semantics of atomic_xchg()
>
> Sasha Levin (1):
> rcutorture: Don't compare ptr with 0
>
> Documentation/atomic_ops.txt | 2 +
> Documentation/memory-barriers.txt | 1 +
> include/linux/rcupdate.h | 15 ++-
> include/trace/events/rcu.h | 31 +++--
> init/Kconfig | 12 ++-
> kernel/context_tracking.c | 75 +++++++++--
> kernel/rcu.h | 7 +
> kernel/rcupdate.c | 60 ++++++++-
> kernel/rcutiny.c | 8 +-
> kernel/rcutiny_plugin.h | 56 ++++++++
> kernel/rcutorture.c | 57 +++++++--
> kernel/rcutree.c | 260 ++++++++++++++++++++++++++-----------
> kernel/rcutree.h | 11 +--
> kernel/trace/trace_clock.c | 1 +
> lib/Kconfig.debug | 117 +++++++++--------
> 15 files changed, 528 insertions(+), 185 deletions(-)
Pulled, thanks a lot Paul!
Ingo
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-04 18:07 ` Ingo Molnar
@ 2013-02-04 19:30 ` Ingo Molnar
2013-02-04 20:25 ` Paul E. McKenney
0 siblings, 1 reply; 12+ messages in thread
From: Ingo Molnar @ 2013-02-04 19:30 UTC (permalink / raw)
To: Paul E. McKenney
Cc: mingo, linux-kernel, josh, rostedt, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
Btw., I'm now getting these build errors in -tip too:
kernel/built-in.o: In function `rcu_torture_reader':
rcutorture.c:(.text+0x657d7): undefined reference to `trace_clock_local'
kernel/built-in.o: In function `rcu_torture_timer':
rcutorture.c:(.text+0x6599f): undefined reference to `trace_clock_local'
Saw the discussion about so I suspect a fix will come?
Thanks,
Ingo
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-04 19:30 ` Ingo Molnar
@ 2013-02-04 20:25 ` Paul E. McKenney
2013-02-05 14:11 ` Paul E. McKenney
0 siblings, 1 reply; 12+ messages in thread
From: Paul E. McKenney @ 2013-02-04 20:25 UTC (permalink / raw)
To: Ingo Molnar
Cc: mingo, linux-kernel, josh, rostedt, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
On Mon, Feb 04, 2013 at 08:30:41PM +0100, Ingo Molnar wrote:
>
> Btw., I'm now getting these build errors in -tip too:
>
> kernel/built-in.o: In function `rcu_torture_reader':
> rcutorture.c:(.text+0x657d7): undefined reference to `trace_clock_local'
> kernel/built-in.o: In function `rcu_torture_timer':
> rcutorture.c:(.text+0x6599f): undefined reference to `trace_clock_local'
>
> Saw the discussion about so I suspect a fix will come?
<red face>
I have a new rcu/next with the fix, and I will post a pull for it assuming
that -next does OK with it.
Thanx, Paul
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-04 20:25 ` Paul E. McKenney
@ 2013-02-05 14:11 ` Paul E. McKenney
2013-02-05 19:52 ` Steven Rostedt
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Paul E. McKenney @ 2013-02-05 14:11 UTC (permalink / raw)
To: Ingo Molnar
Cc: mingo, linux-kernel, josh, rostedt, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
On Mon, Feb 04, 2013 at 12:25:23PM -0800, Paul E. McKenney wrote:
> On Mon, Feb 04, 2013 at 08:30:41PM +0100, Ingo Molnar wrote:
> >
> > Btw., I'm now getting these build errors in -tip too:
> >
> > kernel/built-in.o: In function `rcu_torture_reader':
> > rcutorture.c:(.text+0x657d7): undefined reference to `trace_clock_local'
> > kernel/built-in.o: In function `rcu_torture_timer':
> > rcutorture.c:(.text+0x6599f): undefined reference to `trace_clock_local'
> >
> > Saw the discussion about so I suspect a fix will come?
>
> <red face>
>
> I have a new rcu/next with the fix, and I will post a pull for it assuming
> that -next does OK with it.
And this change is available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git rcu/next
Steven Rostedt (1):
rcu: Allow rcutorture to be built at low optimization levels
kernel/rcutorture.c | 23 ++++++++++++++++-------
1 files changed, 16 insertions(+), 7 deletions(-)
Thanx, Paul
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-05 14:11 ` Paul E. McKenney
@ 2013-02-05 19:52 ` Steven Rostedt
2013-02-05 21:36 ` Paul E. McKenney
2013-02-06 11:44 ` Ingo Molnar
2013-02-06 11:49 ` Ingo Molnar
2 siblings, 1 reply; 12+ messages in thread
From: Steven Rostedt @ 2013-02-05 19:52 UTC (permalink / raw)
To: paulmck
Cc: Ingo Molnar, mingo, linux-kernel, josh, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
On Tue, 2013-02-05 at 06:11 -0800, Paul E. McKenney wrote:
> Steven Rostedt (1):
> rcu: Allow rcutorture to be built at low optimization levels
>
I wish git had dual (or more) authorship, as I started with your patch
and added on to it. We are really both responsible for that change.
-- Steve
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-05 19:52 ` Steven Rostedt
@ 2013-02-05 21:36 ` Paul E. McKenney
0 siblings, 0 replies; 12+ messages in thread
From: Paul E. McKenney @ 2013-02-05 21:36 UTC (permalink / raw)
To: Steven Rostedt
Cc: Ingo Molnar, mingo, linux-kernel, josh, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
On Tue, Feb 05, 2013 at 02:52:30PM -0500, Steven Rostedt wrote:
> On Tue, 2013-02-05 at 06:11 -0800, Paul E. McKenney wrote:
>
> > Steven Rostedt (1):
> > rcu: Allow rcutorture to be built at low optimization levels
>
> I wish git had dual (or more) authorship, as I started with your patch
> and added on to it. We are really both responsible for that change.
We have both our Signed-off-by tags on it, so close enough for me! ;-)
Thanx, Paul
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-05 14:11 ` Paul E. McKenney
2013-02-05 19:52 ` Steven Rostedt
@ 2013-02-06 11:44 ` Ingo Molnar
2013-02-06 11:49 ` Ingo Molnar
2 siblings, 0 replies; 12+ messages in thread
From: Ingo Molnar @ 2013-02-06 11:44 UTC (permalink / raw)
To: Paul E. McKenney
Cc: mingo, linux-kernel, josh, rostedt, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
* Paul E. McKenney <paulmck@linux.vnet.ibm.com> wrote:
> On Mon, Feb 04, 2013 at 12:25:23PM -0800, Paul E. McKenney wrote:
> > On Mon, Feb 04, 2013 at 08:30:41PM +0100, Ingo Molnar wrote:
> > >
> > > Btw., I'm now getting these build errors in -tip too:
> > >
> > > kernel/built-in.o: In function `rcu_torture_reader':
> > > rcutorture.c:(.text+0x657d7): undefined reference to `trace_clock_local'
> > > kernel/built-in.o: In function `rcu_torture_timer':
> > > rcutorture.c:(.text+0x6599f): undefined reference to `trace_clock_local'
> > >
> > > Saw the discussion about so I suspect a fix will come?
> >
> > <red face>
> >
> > I have a new rcu/next with the fix, and I will post a pull for it assuming
> > that -next does OK with it.
>
> And this change is available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git rcu/next
>
> Steven Rostedt (1):
> rcu: Allow rcutorture to be built at low optimization levels
>
> kernel/rcutorture.c | 23 ++++++++++++++++-------
> 1 files changed, 16 insertions(+), 7 deletions(-)
Cool, thanks guys!
Ingo
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-05 14:11 ` Paul E. McKenney
2013-02-05 19:52 ` Steven Rostedt
2013-02-06 11:44 ` Ingo Molnar
@ 2013-02-06 11:49 ` Ingo Molnar
2013-02-06 15:03 ` Frederic Weisbecker
2 siblings, 1 reply; 12+ messages in thread
From: Ingo Molnar @ 2013-02-06 11:49 UTC (permalink / raw)
To: Paul E. McKenney, =?unknown-8bit?B?RnLDqWTDqXJpYw==?= Weisbecker
Cc: mingo, linux-kernel, josh, rostedt, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
btw., I got a non-trivial conflicts in
kernel/context_tracking.c, with the following commits
interacting between the RCU tree (tip:core/rcu) and the
scheduler tree (tip:sched/core):
6a61671bb2f3 cputime: Safely read cputime of full dynticks CPUs
abf917cd91cb cputime: Generic on-demand virtual cputime accounting
4eacdf18374e context_tracking: Add comments on interface and internals
95a79fd458b8 context_tracking: Export context state for generic vtime
I think I managed to resolve the conflicts (will push it out in
an hour or two, after some testing) - but please double check me
on it...
Thanks,
Ingo
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-06 11:49 ` Ingo Molnar
@ 2013-02-06 15:03 ` Frederic Weisbecker
0 siblings, 0 replies; 12+ messages in thread
From: Frederic Weisbecker @ 2013-02-06 15:03 UTC (permalink / raw)
To: Ingo Molnar
Cc: Paul E. McKenney, mingo, linux-kernel, josh, rostedt, rbraun,
zhong, markus, sasha.levin, cody, dave, akpm, tglx
2013/2/6 Ingo Molnar <mingo@kernel.org>:
>
> btw., I got a non-trivial conflicts in
> kernel/context_tracking.c, with the following commits
> interacting between the RCU tree (tip:core/rcu) and the
> scheduler tree (tip:sched/core):
>
> 6a61671bb2f3 cputime: Safely read cputime of full dynticks CPUs
> abf917cd91cb cputime: Generic on-demand virtual cputime accounting
> 4eacdf18374e context_tracking: Add comments on interface and internals
> 95a79fd458b8 context_tracking: Export context state for generic vtime
>
> I think I managed to resolve the conflicts (will push it out in
> an hour or two, after some testing) - but please double check me
> on it...
Sorry about that conflict. Given that both RCU and cputime were
competing with significant changes on this newborn subsystem, such
clash was hard to avoid.
The merge is mostly correct. There is just a small issue with
context_tracking_task_switch() kerneldoc style comment: it should be
moved out of guest_enter/guest_exit, newly introduced APIs, to be
right above context_tracking_task_switch() function. Otherwise it's
fine.
Thanks!
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-04 17:18 [GIT PULL rcu/next] RCU commits for 3.9 Paul E. McKenney
2013-02-04 18:07 ` Ingo Molnar
@ 2013-02-07 11:21 ` Lai Jiangshan
2013-02-07 16:15 ` Paul E. McKenney
1 sibling, 1 reply; 12+ messages in thread
From: Lai Jiangshan @ 2013-02-07 11:21 UTC (permalink / raw)
To: paulmck
Cc: mingo, linux-kernel, josh, rostedt, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
Hi, Paul
These (https://lkml.org/lkml/2012/11/29/123) are still not merged.
Thanks,
lai
On 05/02/13 01:18, Paul E. McKenney wrote:
> Hello, Ingo,
>
> The major features of this series are:
>
> 1. Changes to rcutorture and to RCU documentation. Posted to LKML at
> https://lkml.org/lkml/2013/1/26/188.
>
> 2. Enhancements to uniprocessor handling in tiny RCU. Posted to LKML
> at https://lkml.org/lkml/2013/1/27/2.
>
> 3. Tag RCU callbacks with grace-period number to simplify callback
> advancement. Posted to LKML at https://lkml.org/lkml/2013/1/26/203.
>
> 4. Miscellaneous fixes. Posted to LKML at
> https://lkml.org/lkml/2013/1/26/204.
>
> All of these commits have been subject 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
>
> --------------------->
>
> Cody P Schafer (1):
> rcu: Correct 'optimized' to 'optimize' in header comment
>
> Dave Hansen (1):
> rcu: Consolidate debugging Kconfig options
>
> Frederic Weisbecker (1):
> context_tracking: Add comments on interface and internals
>
> Josh Triplett (1):
> rcu: Make rcu_is_cpu_rrupt_from_idle helper functions static
>
> Li Zhong (2):
> rcu: Use new nesting value for rcu_dyntick trace in rcu_eqs_enter_common
> rcu: Remove unused code originally used for context tracking
>
> Paul E. McKenney (11):
> tracing: Export trace_clock_local()
> rcu: Reduce rcutorture tracing
> rcu: Fix blimit type for trace_rcu_batch_start()
> rcu: Silence compiler array out-of-bounds false positive
> rcu: Tag callback lists with corresponding grace-period number
> rcu: Trace callback acceleration
> rcu: Remove obsolete Kconfig option from comment
> rcu: Provide RCU CPU stall warnings for tiny RCU
> rcu: Allow TREE_PREEMPT_RCU on UP systems
> rcu: Make rcutorture's shuffler task shuffle recently added tasks
> Merge branches 'doctorture.2013.01.29a', 'fixes.2013.01.26a', 'tagcb.2013.01.24a' and 'tiny.2013.01.29b' into HEAD
>
> Richard Braun (1):
> Documentation: Memory barrier semantics of atomic_xchg()
>
> Sasha Levin (1):
> rcutorture: Don't compare ptr with 0
>
> Documentation/atomic_ops.txt | 2 +
> Documentation/memory-barriers.txt | 1 +
> include/linux/rcupdate.h | 15 ++-
> include/trace/events/rcu.h | 31 +++--
> init/Kconfig | 12 ++-
> kernel/context_tracking.c | 75 +++++++++--
> kernel/rcu.h | 7 +
> kernel/rcupdate.c | 60 ++++++++-
> kernel/rcutiny.c | 8 +-
> kernel/rcutiny_plugin.h | 56 ++++++++
> kernel/rcutorture.c | 57 +++++++--
> kernel/rcutree.c | 260 ++++++++++++++++++++++++++-----------
> kernel/rcutree.h | 11 +--
> kernel/trace/trace_clock.c | 1 +
> lib/Kconfig.debug | 117 +++++++++--------
> 15 files changed, 528 insertions(+), 185 deletions(-)
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [GIT PULL rcu/next] RCU commits for 3.9
2013-02-07 11:21 ` Lai Jiangshan
@ 2013-02-07 16:15 ` Paul E. McKenney
0 siblings, 0 replies; 12+ messages in thread
From: Paul E. McKenney @ 2013-02-07 16:15 UTC (permalink / raw)
To: Lai Jiangshan
Cc: mingo, linux-kernel, josh, rostedt, rbraun, zhong, markus,
sasha.levin, cody, dave, fweisbec, akpm, tglx
On Thu, Feb 07, 2013 at 07:21:48PM +0800, Lai Jiangshan wrote:
> Hi, Paul
>
> These (https://lkml.org/lkml/2012/11/29/123) are still not merged.
Ah, good point...
My intent was to merge as soon as https://lkml.org/lkml/2012/12/5/201
was responded to. The question should not have blocked merging, so I
should have followed up, but the again, so should have you. ;-)
I queued the patches, and if testing goes well, will push them to -tip
in a few days.
The remaining issue for invoking srcu_read_lock() from offline CPUs is
that lockdep does tracing that uses RCU. So your patch 4/8 is incomplete,
though a good step towards allowing SRCU to be invoked from offline CPUs.
Thoughts on getting the rest of the way there?
Thanx, Paul
> Thanks,
> lai
>
> On 05/02/13 01:18, Paul E. McKenney wrote:
> >Hello, Ingo,
> >
> >The major features of this series are:
> >
> >1. Changes to rcutorture and to RCU documentation. Posted to LKML at
> > https://lkml.org/lkml/2013/1/26/188.
> >
> >2. Enhancements to uniprocessor handling in tiny RCU. Posted to LKML
> > at https://lkml.org/lkml/2013/1/27/2.
> >
> >3. Tag RCU callbacks with grace-period number to simplify callback
> > advancement. Posted to LKML at https://lkml.org/lkml/2013/1/26/203.
> >
> >4. Miscellaneous fixes. Posted to LKML at
> > https://lkml.org/lkml/2013/1/26/204.
> >
> >All of these commits have been subject 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
> >
> >--------------------->
> >
> >Cody P Schafer (1):
> > rcu: Correct 'optimized' to 'optimize' in header comment
> >
> >Dave Hansen (1):
> > rcu: Consolidate debugging Kconfig options
> >
> >Frederic Weisbecker (1):
> > context_tracking: Add comments on interface and internals
> >
> >Josh Triplett (1):
> > rcu: Make rcu_is_cpu_rrupt_from_idle helper functions static
> >
> >Li Zhong (2):
> > rcu: Use new nesting value for rcu_dyntick trace in rcu_eqs_enter_common
> > rcu: Remove unused code originally used for context tracking
> >
> >Paul E. McKenney (11):
> > tracing: Export trace_clock_local()
> > rcu: Reduce rcutorture tracing
> > rcu: Fix blimit type for trace_rcu_batch_start()
> > rcu: Silence compiler array out-of-bounds false positive
> > rcu: Tag callback lists with corresponding grace-period number
> > rcu: Trace callback acceleration
> > rcu: Remove obsolete Kconfig option from comment
> > rcu: Provide RCU CPU stall warnings for tiny RCU
> > rcu: Allow TREE_PREEMPT_RCU on UP systems
> > rcu: Make rcutorture's shuffler task shuffle recently added tasks
> > Merge branches 'doctorture.2013.01.29a', 'fixes.2013.01.26a', 'tagcb.2013.01.24a' and 'tiny.2013.01.29b' into HEAD
> >
> >Richard Braun (1):
> > Documentation: Memory barrier semantics of atomic_xchg()
> >
> >Sasha Levin (1):
> > rcutorture: Don't compare ptr with 0
> >
> > Documentation/atomic_ops.txt | 2 +
> > Documentation/memory-barriers.txt | 1 +
> > include/linux/rcupdate.h | 15 ++-
> > include/trace/events/rcu.h | 31 +++--
> > init/Kconfig | 12 ++-
> > kernel/context_tracking.c | 75 +++++++++--
> > kernel/rcu.h | 7 +
> > kernel/rcupdate.c | 60 ++++++++-
> > kernel/rcutiny.c | 8 +-
> > kernel/rcutiny_plugin.h | 56 ++++++++
> > kernel/rcutorture.c | 57 +++++++--
> > kernel/rcutree.c | 260 ++++++++++++++++++++++++++-----------
> > kernel/rcutree.h | 11 +--
> > kernel/trace/trace_clock.c | 1 +
> > lib/Kconfig.debug | 117 +++++++++--------
> > 15 files changed, 528 insertions(+), 185 deletions(-)
> >
> >--
> >To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> >the body of a message to majordomo@vger.kernel.org
> >More majordomo info at http://vger.kernel.org/majordomo-info.html
> >Please read the FAQ at http://www.tux.org/lkml/
> >
>
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-02-07 18:03 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 17:18 [GIT PULL rcu/next] RCU commits for 3.9 Paul E. McKenney
2013-02-04 18:07 ` Ingo Molnar
2013-02-04 19:30 ` Ingo Molnar
2013-02-04 20:25 ` Paul E. McKenney
2013-02-05 14:11 ` Paul E. McKenney
2013-02-05 19:52 ` Steven Rostedt
2013-02-05 21:36 ` Paul E. McKenney
2013-02-06 11:44 ` Ingo Molnar
2013-02-06 11:49 ` Ingo Molnar
2013-02-06 15:03 ` Frederic Weisbecker
2013-02-07 11:21 ` Lai Jiangshan
2013-02-07 16:15 ` 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;
as well as URLs for NNTP newsgroup(s).