Fix: don't use membarrier SHARED syscall command in liburcu-bp
[urcu.git] / src / urcu-bp.c
index c0fac8330bdc43a5d1eb58a6999057461c44a002..ebe96c57da9630d3e43168ee32fa96da95277bfa 100644 (file)
@@ -593,8 +593,13 @@ void rcu_sys_membarrier_status(int available)
 static
 void rcu_sys_membarrier_status(int available)
 {
-       if (available)
-               urcu_bp_has_sys_membarrier = 1;
+       /*
+        * membarrier has blocking behavior, which changes the
+        * application behavior too much compared to using barriers when
+        * synchronize_rcu is used repeatedly (without using call_rcu).
+        * Don't use membarrier for now, unless its use has been
+        * explicitly forced when building liburcu.
+        */
 }
 #endif
 
This page took 0.022362 seconds and 4 git commands to generate.