From: "Paul E. McKenney" <[email protected]> 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 <[email protected]> --- kernel/rcu/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c index ad6980af1c99..65ba4977b200 100644 --- a/kernel/rcu/tree.c +++ b/kernel/rcu/tree.c @@ -3438,7 +3438,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; -- 1.8.1.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

