Fix: namespace contexts !CONFIG_RCU_TLS variable initialization
[deliverable/lttng-ust.git] / liblttng-ust / lttng-context-ipc-ns.c
index c973dc86dd06ec246f627a8bc7bbf17a80ef2cf2..a05a6c616a5fe4eee378c0c5b82a916e14288a66 100644 (file)
 #include "lttng-tracer-core.h"
 #include "ns.h"
 
-
 /*
  * We cache the result to ensure we don't stat(2) the proc filesystem on
  * each event.
  */
+#ifdef CONFIG_RCU_TLS
 static DEFINE_URCU_TLS(ino_t, cached_ipc_ns) = NS_INO_UNINITIALIZED;
+#else
+static DEFINE_URCU_TLS_INIT(ino_t, cached_ipc_ns, NS_INO_UNINITIALIZED);
+#endif
 
 static
 ino_t get_ipc_ns(void)
This page took 0.02648 seconds and 5 git commands to generate.