aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcu
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>2015-06-25 16:35:03 -0700
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2015-07-17 14:58:55 -0700
commit7fd0ddc5bf1ab5259c80a53a01984e13befd658b (patch)
tree3aee5fec399c59eef460913a61fe5f3a5ff37b4b /kernel/rcu
parentrcu: Abstract funnel locking from synchronize_sched_expedited() (diff)
downloadlinux-dev-7fd0ddc5bf1ab5259c80a53a01984e13befd658b.tar.xz
linux-dev-7fd0ddc5bf1ab5259c80a53a01984e13befd658b.zip
rcu: Fix synchronize_sched_expedited() type error for "s"
The type of "s" has been "long" rather than the correct "unsigned long" for quite some time. This commit fixes this type error. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu')
-rw-r--r--kernel/rcu/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
index f79a1c646846..094ed8ff82b4 100644
--- a/kernel/rcu/tree.c
+++ b/kernel/rcu/tree.c
@@ -3386,7 +3386,7 @@ static int synchronize_sched_expedited_cpu_stop(void *data)
void synchronize_sched_expedited(void)
{
int cpu;
- long s;
+ unsigned long s;
struct rcu_node *rnp;
struct rcu_state *rsp = &rcu_sched_state;