aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcu/tree.c
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>2015-06-25 19:35:03 -0400
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2015-07-17 17:58:55 -0400
commit7fd0ddc5bf1ab5259c80a53a01984e13befd658b (patch)
tree3aee5fec399c59eef460913a61fe5f3a5ff37b4b /kernel/rcu/tree.c
parentb09e5f8601d7e5b8d45348c9c09e1fb4109e8dc6 (diff)
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/tree.c')
-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)
3386void synchronize_sched_expedited(void) 3386void synchronize_sched_expedited(void)
3387{ 3387{
3388 int cpu; 3388 int cpu;
3389 long s; 3389 unsigned long s;
3390 struct rcu_node *rnp; 3390 struct rcu_node *rnp;
3391 struct rcu_state *rsp = &rcu_sched_state; 3391 struct rcu_state *rsp = &rcu_sched_state;
3392 3392