diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2011-02-25 08:46:38 -0500 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2011-02-25 08:46:38 -0500 |
commit | d356b595e5a95c0c2305ec0a7d1cdb3e26f57716 (patch) | |
tree | 8256f0460d6ff5f50d57590a53c10336b66cb241 /arch | |
parent | deb4b003eb33e63af23cd887ded04ad77ab3dcbb (diff) |
arch/tile: Fix atomic_read() definition to use ACCESS_ONCE
This adds the volatile cast which forces the compiler to emit the load.
Suggested by Peter Zijlstra <peterz@infradead.org>.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/tile/include/asm/atomic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/include/asm/atomic.h b/arch/tile/include/asm/atomic.h index b8c49f98a44c..75a16028a952 100644 --- a/arch/tile/include/asm/atomic.h +++ b/arch/tile/include/asm/atomic.h @@ -32,7 +32,7 @@ */ static inline int atomic_read(const atomic_t *v) { - return v->counter; + return ACCESS_ONCE(v->counter); } /** |