X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flttng-context-tid.c;h=5ca7346c9d0a21729954d37b66496310f5cdedd5;hb=f5ffbd770ec2b9d1ac9b7059eb33a01432043bce;hp=89228a1f8194a4d784c6b2dab94290f58c5ab947;hpb=437d5aa59380583ce1cd14d394a53b398be1275d;p=lttng-modules.git diff --git a/src/lttng-context-tid.c b/src/lttng-context-tid.c index 89228a1f..5ca7346c 100644 --- a/src/lttng-context-tid.c +++ b/src/lttng-context-tid.c @@ -17,7 +17,7 @@ #include static -size_t tid_get_size(size_t offset) +size_t tid_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset) { size_t size = 0; @@ -27,26 +27,25 @@ size_t tid_get_size(size_t offset) } static -void tid_record(struct lttng_kernel_ctx_field *field, - struct lib_ring_buffer_ctx *ctx, - struct lttng_channel *chan) +void tid_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, + struct lttng_kernel_ring_buffer_ctx *ctx, + struct lttng_kernel_channel_buffer *chan) { pid_t tid; tid = task_pid_nr(current); - lib_ring_buffer_align_ctx(ctx, lttng_alignof(tid)); - chan->ops->event_write(ctx, &tid, sizeof(tid)); + chan->ops->event_write(ctx, &tid, sizeof(tid), lttng_alignof(tid)); } static -void tid_get_value(struct lttng_kernel_ctx_field *field, - struct lttng_probe_ctx *lttng_probe_ctx, - union lttng_ctx_value *value) +void tid_get_value(void *priv, + struct lttng_kernel_probe_ctx *lttng_probe_ctx, + struct lttng_ctx_value *value) { pid_t tid; tid = task_pid_nr(current); - value->s64 = tid; + value->u.s64 = tid; } static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field( @@ -54,7 +53,6 @@ static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_ lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10), false, false, false), tid_get_size, - NULL, tid_record, tid_get_value, NULL, NULL);