atomic_t: Cast to volatile when accessing atomic variables
In preparation for removing volatile from the atomic_t definition, this patch adds a volatile cast to all the atomic read functions. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
e40152ee1e
commit
f3d46f9d31
@@ -22,7 +22,7 @@
|
||||
*/
|
||||
static inline int atomic_read(const atomic_t *v)
|
||||
{
|
||||
return v->counter;
|
||||
return (*(volatile int *)&(v)->counter);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user