X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flttng-context-cgroup-ns.c;h=3a7f574ccd29ad8c2ad2c3ddcfb82007b5d1d186;hb=fd70f5a5f72ac11b36f67f3a4bdee03cd9a39648;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..3a7f574c 100644 --- a/src/lttng-context-cgroup-ns.c +++ b/src/lttng-context-cgroup-ns.c @@ -36,8 +36,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; @@ -51,8 +51,7 @@ void cgroup_ns_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, if (current->nsproxy) cgroup_ns_inum = current->nsproxy->cgroup_ns->lttng_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