diff --git a/[refs] b/[refs] index 2a78a15a92a1..6bb266aceebb 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f0f376f204b6047bbb405180f796e93cc8444f09 +refs/heads/master: 2f624278626677bfaf73fef97f86b37981621f5c diff --git a/trunk/include/linux/seqlock.h b/trunk/include/linux/seqlock.h index c6db9fb33c44..bb1fac5b8ee8 100644 --- a/trunk/include/linux/seqlock.h +++ b/trunk/include/linux/seqlock.h @@ -141,7 +141,7 @@ static inline unsigned __read_seqcount_begin(const seqcount_t *s) unsigned ret; repeat: - ret = s->sequence; + ret = ACCESS_ONCE(s->sequence); if (unlikely(ret & 1)) { cpu_relax(); goto repeat;