X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flttng-context-nice.c;h=fb698648521dea55ed9bdfe8ebb14ff813d7e536;hb=eec143a1bec2bebc1c62faab8af96160eb47ece5;hp=22b8696536903412d1dfccb9f950050d3c8be420;hpb=437d5aa59380583ce1cd14d394a53b398be1275d;p=lttng-modules.git diff --git a/src/lttng-context-nice.c b/src/lttng-context-nice.c index 22b86965..fb698648 100644 --- a/src/lttng-context-nice.c +++ b/src/lttng-context-nice.c @@ -17,7 +17,7 @@ #include static -size_t nice_get_size(size_t offset) +size_t nice_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset) { size_t size = 0; @@ -27,8 +27,8 @@ size_t nice_get_size(size_t offset) } static -void nice_record(struct lttng_kernel_ctx_field *field, - struct lib_ring_buffer_ctx *ctx, +void nice_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, + struct lttng_kernel_ring_buffer_ctx *ctx, struct lttng_channel *chan) { int nice; @@ -39,11 +39,11 @@ void nice_record(struct lttng_kernel_ctx_field *field, } static -void nice_get_value(struct lttng_kernel_ctx_field *field, - struct lttng_probe_ctx *lttng_probe_ctx, - union lttng_ctx_value *value) +void nice_get_value(void *priv, + struct lttng_kernel_probe_ctx *lttng_probe_ctx, + struct lttng_ctx_value *value) { - value->s64 = task_nice(current); + value->u.s64 = task_nice(current); } static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field( @@ -51,7 +51,6 @@ static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_ lttng_kernel_static_type_integer_from_type(int, __BYTE_ORDER, 10), false, false, false), nice_get_size, - NULL, nice_record, nice_get_value, NULL, NULL);