Merge branch 'x86-atomic-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / arch / x86 / include / asm / atomic64_64.h
index 4d6e2cd6c88c81ee8c7a7f2ab9642691f6ee3b14..49fd1ea229511632ac849b17f55543e6782da9ae 100644 (file)
@@ -18,7 +18,7 @@
  */
 static inline long atomic64_read(const atomic64_t *v)
 {
-       return v->counter;
+       return (*(volatile long *)&(v)->counter);
 }
 
 /**