|
@@ -3347,7 +3347,6 @@ static unsigned long rcu_seq_snap(unsigned long *sp)
|
|
|
{
|
|
|
unsigned long s;
|
|
|
|
|
|
- smp_mb(); /* Caller's modifications seen first by other CPUs. */
|
|
|
s = (READ_ONCE(*sp) + 3) & ~0x1;
|
|
|
smp_mb(); /* Above access must not bleed into critical section. */
|
|
|
return s;
|
|
@@ -3374,6 +3373,7 @@ static void rcu_exp_gp_seq_end(struct rcu_state *rsp)
|
|
|
}
|
|
|
static unsigned long rcu_exp_gp_seq_snap(struct rcu_state *rsp)
|
|
|
{
|
|
|
+ smp_mb(); /* Caller's modifications seen first by other CPUs. */
|
|
|
return rcu_seq_snap(&rsp->expedited_sequence);
|
|
|
}
|
|
|
static bool rcu_exp_gp_seq_done(struct rcu_state *rsp, unsigned long s)
|