X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust%2Flttng-context-uts-ns.c;h=778ccb46b31c657c3ac83c0f096c2c2f833b704f;hb=4ae3f13373ab43824ddca62d3482584a6296641d;hp=fb2d89f94bfa3ceee709fce0179e0dfb7c64a22e;hpb=664bf5c2f4248d0008528ea33ff52119218c1f2f;p=lttng-ust.git diff --git a/liblttng-ust/lttng-context-uts-ns.c b/liblttng-ust/lttng-context-uts-ns.c index fb2d89f9..778ccb46 100644 --- a/liblttng-ust/lttng-context-uts-ns.c +++ b/liblttng-ust/lttng-context-uts-ns.c @@ -38,7 +38,11 @@ * 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_uts_ns) = NS_INO_UNINITIALIZED; +#else +static DEFINE_URCU_TLS_INIT(ino_t, cached_uts_ns, NS_INO_UNINITIALIZED); +#endif static ino_t get_uts_ns(void)