Move alignment into event write callback
[lttng-modules.git] / src / lttng-context-vsgid.c
index f47f0d142216c59c77cd824f0d6c03d2b34b26d6..08ee829bc1b5e16e60f41fd75420c79eca18cdff 100644 (file)
@@ -30,14 +30,13 @@ size_t vsgid_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size
 
 static
 void vsgid_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)
 {
        gid_t vsgid;
 
        vsgid = lttng_current_vsgid();
-       lib_ring_buffer_align_ctx(ctx, lttng_alignof(vsgid));
-       chan->ops->event_write(ctx, &vsgid, sizeof(vsgid));
+       chan->ops->event_write(ctx, &vsgid, sizeof(vsgid), lttng_alignof(vsgid));
 }
 
 static
This page took 0.023499 seconds and 4 git commands to generate.