Forráskód Böngészése

x86[-64]:Remove 'volatile' from atomic_t

Any code that relies on the volatile would be a bug waiting to happen
anyway.

Don't encourage people to think that putting 'volatile' on data
structures somehow fixes problems.  We should always use proper locking
(and other serialization) techniques.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Linus Torvalds 18 éve
szülő
commit
f9e9dcb38f
2 módosított fájl, 2 hozzáadás és 2 törlés
  1. 1 1
      include/asm-i386/atomic.h
  2. 1 1
      include/asm-x86_64/atomic.h

+ 1 - 1
include/asm-i386/atomic.h

@@ -14,7 +14,7 @@
  * on us. We need to use _exactly_ the address the user gave us,
  * not some alias that contains the same information.
  */
-typedef struct { volatile int counter; } atomic_t;
+typedef struct { int counter; } atomic_t;
 
 #define ATOMIC_INIT(i)	{ (i) }
 

+ 1 - 1
include/asm-x86_64/atomic.h

@@ -21,7 +21,7 @@
  * on us. We need to use _exactly_ the address the user gave us,
  * not some alias that contains the same information.
  */
-typedef struct { volatile int counter; } atomic_t;
+typedef struct { int counter; } atomic_t;
 
 #define ATOMIC_INIT(i)	{ (i) }