We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da2ac56 commit b459874Copy full SHA for b459874
include/linux/srcu.h
@@ -47,7 +47,8 @@ int init_srcu_struct(struct srcu_struct *ssp);
47
#define SRCU_READ_FLAVOR_NORMAL 0x1 // srcu_read_lock().
48
#define SRCU_READ_FLAVOR_NMI 0x2 // srcu_read_lock_nmisafe().
49
#define SRCU_READ_FLAVOR_LITE 0x4 // srcu_read_lock_lite().
50
-#define SRCU_READ_FLAVOR_ALL 0x7 // All of the above.
+#define SRCU_READ_FLAVOR_ALL (SRCU_READ_FLAVOR_NORMAL | SRCU_READ_FLAVOR_NMI | \
51
+ SRCU_READ_FLAVOR_LITE) // All of the above.
52
53
#ifdef CONFIG_TINY_SRCU
54
#include <linux/srcutiny.h>
0 commit comments