[PATCH tip/core/rcu 18/19] rcu: Replace __this_cpu_ptr() uses with raw_cpu_ptr()

2014-04-28 Thread Paul E. McKenney
From: Christoph Lameter __this_cpu_ptr is being phased out. One special case is increment_cpu_stall_ticks(). A per cpu variable is incremented so use raw_cpu_inc(). Cc: Dipankar Sarma Signed-off-by: Christoph Lameter Signed-off-by: Paul E. McKenney --- kernel/rcu/tree.c| 6 +++--- k

Re: rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2014-04-15 Thread Paul E. McKenney
On Tue, Apr 15, 2014 at 12:35:13PM -0500, Christoph Lameter wrote: > 3.15-rc1 has raw_cpu operations. So this patch that you acked before will > now apply. > > > Subject: rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr > > __this_cpu_ptr is being phased out. >

rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2014-04-15 Thread Christoph Lameter
3.15-rc1 has raw_cpu operations. So this patch that you acked before will now apply. Subject: rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr __this_cpu_ptr is being phased out. One special case is increment_cpu_stall_ticks(). A per cpu variable is incremented so use raw_cpu_inc(). Cc

Re: [PATCH 24/48] rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2014-02-16 Thread Paul E. McKenney
On Fri, Feb 14, 2014 at 02:19:05PM -0600, Christoph Lameter wrote: > [Patch depends on another patch in this series that introduces raw_cpu_ops] > > __this_cpu_ptr is being phased out. > > One special case is increment_cpu_stall_ticks(). > A per cpu variable is incremented so use raw_cpu_inc(). >

[PATCH 24/48] rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2014-02-14 Thread Christoph Lameter
[Patch depends on another patch in this series that introduces raw_cpu_ops] __this_cpu_ptr is being phased out. One special case is increment_cpu_stall_ticks(). A per cpu variable is incremented so use raw_cpu_inc(). Cc: Dipankar Sarma Cc: "Paul E. McKenney" Signed-off-by: Christoph Lameter

[PATCH 22/41] rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2014-01-17 Thread Christoph Lameter
[Patch depends on another patch in this series that introduces raw_cpu_ops] __this_cpu_ptr is being phased out. One special case is increment_cpu_stall_ticks(). A per cpu variable is incremented so use raw_cpu_inc(). Cc: Dipankar Sarma Cc: "Paul E. McKenney" Signed-off-by: Christoph Lameter

[PATCH 22/40] rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2013-12-19 Thread Christoph Lameter
[Patch depends on another patch in this series that introduces raw_cpu_ops] __this_cpu_ptr is being phased out. One special case is increment_cpu_stall_ticks(). A per cpu variable is incremented so use raw_cpu_inc(). Cc: Dipankar Sarma Cc: "Paul E. McKenney" Signed-off-by: Christoph Lameter

Re: [PATCH 22/41] rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2013-12-04 Thread Christoph Lameter
On Tue, 3 Dec 2013, Paul E. McKenney wrote: > This does not build on 3.13-rc2. Ah, need a couple of patches earlier > in the series. > > But... But... Didn't we recently change -to- __this_cpu_ptr() from > the older __get_cpu_var()? We moved from __get_cpu_var to this_cpu_ptr in a earlier patc

Re: [PATCH 22/41] rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2013-12-03 Thread Paul E. McKenney
On Tue, Dec 03, 2013 at 05:32:54PM -0600, Christoph Lameter wrote: > __this_cpu_ptr is being phased out. > > One special case is increment_cpu_stall_ticks(). > A per cpu variable is incremented so use raw_cpu_inc(). > > Cc: Dipankar Sarma > Cc: "Paul E. McKenney" > Signed-off-by: Christoph Lame

[PATCH 22/41] rcu: Replace __this_cpu_ptr uses with raw_cpu_ptr

2013-12-03 Thread Christoph Lameter
__this_cpu_ptr is being phased out. One special case is increment_cpu_stall_ticks(). A per cpu variable is incremented so use raw_cpu_inc(). Cc: Dipankar Sarma Cc: "Paul E. McKenney" Signed-off-by: Christoph Lameter Index: linux/kernel/rcu/tree.c ==