diff options
-rw-r--r-- | kernel/rcutree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcutree.c b/kernel/rcutree.c index f9c17c399538..effd47a54b36 100644 --- a/kernel/rcutree.c +++ b/kernel/rcutree.c | |||
@@ -313,7 +313,7 @@ static int | |||
313 | cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp) | 313 | cpu_needs_another_gp(struct rcu_state *rsp, struct rcu_data *rdp) |
314 | { | 314 | { |
315 | return *rdp->nxttail[RCU_DONE_TAIL + | 315 | return *rdp->nxttail[RCU_DONE_TAIL + |
316 | ACCESS_ONCE(rsp->completed) != rdp->completed] && | 316 | (ACCESS_ONCE(rsp->completed) != rdp->completed)] && |
317 | !rcu_gp_in_progress(rsp); | 317 | !rcu_gp_in_progress(rsp); |
318 | } | 318 | } |
319 | 319 | ||