Fix: namespace contexts !CONFIG_RCU_TLS variable initialization
[lttng-ust.git] / liblttng-ust / lttng-context-net-ns.c
index 3da46d636f107334c0f0e44955d2ff8d5eb4ba9c..c1ae97967ab5679d3b68c1328b40f0dcb9b4d4fc 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_net_ns) = NS_INO_UNINITIALIZED;
+#else
+static DEFINE_URCU_TLS_INIT(ino_t, cached_net_ns, NS_INO_UNINITIALIZED);
+#endif
 
 static
 ino_t get_net_ns(void)
This page took 0.022517 seconds and 4 git commands to generate.