X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Flib%2Flttng-ust%2Flttng-context-cgroup-ns.c;h=34523ea1ad96b33f2bacdb48860597309283392c;hb=362ea43ac96394dc68dc22677cd9b84f5fa29b76;hp=3f86f175fcfb41a1410f8486ce2021c6688a46ac;hpb=baa8acf3af23bc5d9373144bef8147744b5ae01f;p=lttng-ust.git diff --git a/src/lib/lttng-ust/lttng-context-cgroup-ns.c b/src/lib/lttng-ust/lttng-context-cgroup-ns.c index 3f86f175..34523ea1 100644 --- a/src/lib/lttng-ust/lttng-context-cgroup-ns.c +++ b/src/lib/lttng-ust/lttng-context-cgroup-ns.c @@ -92,6 +92,7 @@ void lttng_context_cgroup_ns_reset(void) static size_t cgroup_ns_get_size(void *priv __attribute__((unused)), + struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)), size_t offset) { size_t size = 0; @@ -103,8 +104,9 @@ size_t cgroup_ns_get_size(void *priv __attribute__((unused)), static void cgroup_ns_record(void *priv __attribute__((unused)), - struct lttng_ust_ring_buffer_ctx *ctx, - struct lttng_ust_channel_buffer *chan) + struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)), + struct lttng_ust_ring_buffer_ctx *ctx, + struct lttng_ust_channel_buffer *chan) { ino_t cgroup_ns; @@ -115,9 +117,10 @@ void cgroup_ns_record(void *priv __attribute__((unused)), static void cgroup_ns_get_value(void *priv __attribute__((unused)), + struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)), struct lttng_ust_ctx_value *value) { - value->u.s64 = get_cgroup_ns(); + value->u.u64 = get_cgroup_ns(); } static const struct lttng_ust_ctx_field *ctx_field = lttng_ust_static_ctx_field( @@ -150,9 +153,9 @@ error_find_context: } /* - * * Force a read (imply TLS fixup for dlopen) of TLS variables. - * */ -void lttng_fixup_cgroup_ns_tls(void) + * Force a read (imply TLS allocation for dlopen) of TLS variables. + */ +void lttng_cgroup_ns_alloc_tls(void) { asm volatile ("" : : "m" (URCU_TLS(cached_cgroup_ns))); }