fix: block: add a disk_uevent helper (v5.12)
[lttng-modules.git] / src / lttng-context-preemptible.c
index ae5f825680ab9093c72613f662a75769646d5325..9098f4b06b1a006e7823ac4b3d3293347440f92c 100644 (file)
@@ -35,7 +35,7 @@ size_t preemptible_get_size(size_t offset)
 }
 
 static
-void preemptible_record(struct lttng_ctx_field *field,
+void preemptible_record(struct lttng_kernel_ctx_field *field,
                struct lib_ring_buffer_ctx *ctx,
                struct lttng_channel *chan)
 {
@@ -50,7 +50,7 @@ void preemptible_record(struct lttng_ctx_field *field,
 }
 
 static
-void preemptible_get_value(struct lttng_ctx_field *field,
+void preemptible_get_value(struct lttng_kernel_ctx_field *field,
                struct lttng_probe_ctx *lttng_probe_ctx,
                union lttng_ctx_value *value)
 {
@@ -63,9 +63,9 @@ void preemptible_get_value(struct lttng_ctx_field *field,
                value->s64 = 0;
 }
 
-int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx)
+int lttng_add_preemptible_to_ctx(struct lttng_kernel_ctx **ctx)
 {
-       struct lttng_ctx_field *field;
+       struct lttng_kernel_ctx_field *field;
 
        field = lttng_append_context(ctx);
        if (!field)
@@ -81,7 +81,7 @@ int lttng_add_preemptible_to_ctx(struct lttng_ctx **ctx)
        field->event_field.type.u.integer.signedness = lttng_is_signed_type(uint8_t);
        field->event_field.type.u.integer.reverse_byte_order = 0;
        field->event_field.type.u.integer.base = 10;
-       field->event_field.type.u.integer.encoding = lttng_encode_none;
+       field->event_field.type.u.integer.encoding = lttng_kernel_string_encoding_none;
        field->get_size = preemptible_get_size;
        field->record = preemptible_record;
        field->get_value = preemptible_get_value;
This page took 0.025336 seconds and 4 git commands to generate.