Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7fd0ddc5 authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

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: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
parent b09e5f86
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;