X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flttng-context-cgroup-ns.c;h=3a7f574ccd29ad8c2ad2c3ddcfb82007b5d1d186;hb=HEAD;hp=5e8c615527e885ae1d45bd30b1e366f023108ab3;hpb=a92e844e9e4cc9d5c4a7ec3d1c0738d375430446;p=lttng-modules.git diff --git a/src/lttng-context-cgroup-ns.c b/src/lttng-context-cgroup-ns.c index 5e8c6155..27659db8 100644 --- a/src/lttng-context-cgroup-ns.c +++ b/src/lttng-context-cgroup-ns.c @@ -17,7 +17,6 @@ #include #include #include -#include #include #if defined(CONFIG_CGROUPS) && \ @@ -36,8 +35,8 @@ size_t cgroup_ns_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, static void cgroup_ns_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, - struct lib_ring_buffer_ctx *ctx, - struct lttng_channel *chan) + struct lttng_kernel_ring_buffer_ctx *ctx, + struct lttng_kernel_channel_buffer *chan) { unsigned int cgroup_ns_inum = 0; @@ -49,10 +48,9 @@ void cgroup_ns_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, * namespaces, just dereference the pointers. */ if (current->nsproxy) - cgroup_ns_inum = current->nsproxy->cgroup_ns->lttng_ns_inum; + cgroup_ns_inum = current->nsproxy->cgroup_ns->ns.inum; - lib_ring_buffer_align_ctx(ctx, lttng_alignof(cgroup_ns_inum)); - chan->ops->event_write(ctx, &cgroup_ns_inum, sizeof(cgroup_ns_inum)); + chan->ops->event_write(ctx, &cgroup_ns_inum, sizeof(cgroup_ns_inum), lttng_alignof(cgroup_ns_inum)); } static @@ -70,7 +68,7 @@ void cgroup_ns_get_value(void *priv, * namespaces, just dereference the pointers. */ if (current->nsproxy) - cgroup_ns_inum = current->nsproxy->cgroup_ns->lttng_ns_inum; + cgroup_ns_inum = current->nsproxy->cgroup_ns->ns.inum; value->u.s64 = cgroup_ns_inum; } @@ -78,7 +76,7 @@ void cgroup_ns_get_value(void *priv, static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field( lttng_kernel_static_event_field("cgroup_ns", lttng_kernel_static_type_integer_from_type(unsigned int, __BYTE_ORDER, 10), - false, false, false), + false, false), cgroup_ns_get_size, cgroup_ns_record, cgroup_ns_get_value,