X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flttng-context-veuid.c;h=9113578e2bd76f855d59925f8a5af0e030972491;hb=ac847066a7e106d38fd18587044622d050dc86a1;hp=0796872986f8a5650a7fd2deac6894660918acb6;hpb=437d5aa59380583ce1cd14d394a53b398be1275d;p=lttng-modules.git diff --git a/src/lttng-context-veuid.c b/src/lttng-context-veuid.c index 07968729..9113578e 100644 --- a/src/lttng-context-veuid.c +++ b/src/lttng-context-veuid.c @@ -19,7 +19,7 @@ #include static -size_t veuid_get_size(size_t offset) +size_t veuid_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset) { size_t size = 0; @@ -29,9 +29,9 @@ size_t veuid_get_size(size_t offset) } static -void veuid_record(struct lttng_kernel_ctx_field *field, - struct lib_ring_buffer_ctx *ctx, - struct lttng_channel *chan) +void veuid_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, + struct lttng_kernel_ring_buffer_ctx *ctx, + struct lttng_kernel_channel_buffer *chan) { uid_t veuid; @@ -41,11 +41,11 @@ void veuid_record(struct lttng_kernel_ctx_field *field, } static -void veuid_get_value(struct lttng_kernel_ctx_field *field, - struct lttng_probe_ctx *lttng_probe_ctx, - union lttng_ctx_value *value) +void veuid_get_value(void *priv, + struct lttng_kernel_probe_ctx *lttng_probe_ctx, + struct lttng_ctx_value *value) { - value->s64 = lttng_current_veuid(); + value->u.s64 = lttng_current_veuid(); } static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field( @@ -53,7 +53,6 @@ static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_ lttng_kernel_static_type_integer_from_type(uid_t, __BYTE_ORDER, 10), false, false, false), veuid_get_size, - NULL, veuid_record, veuid_get_value, NULL, NULL);