Browse Source

tools/liblockdep: add userspace versions of WRITE_ONCE and RCU_INIT_POINTER

These were added to the kernel code in cee34d88c ("lockdep: Fix a race between
/proc/lock_stat and module unload"). There's nothing special we need to do
about them in userspace.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Sasha Levin 9 years ago
parent
commit
e308e942e1
1 changed files with 2 additions and 0 deletions
  1. 2 0
      tools/lib/lockdep/uinclude/linux/compiler.h

+ 2 - 0
tools/lib/lockdep/uinclude/linux/compiler.h

@@ -3,5 +3,7 @@
 
 
 #define __used		__attribute__((__unused__))
 #define __used		__attribute__((__unused__))
 #define unlikely
 #define unlikely
+#define WRITE_ONCE(x, val) x=(val)
+#define RCU_INIT_POINTER(p, v) p=(v)
 
 
 #endif
 #endif