instrumentation: workqueue: remove compatibility code
[lttng-modules.git] / lttng-context-pid-ns.c
index e4d3a3a3a5331840a15b7bad6392390cb9e20613..1e95d6b33bbb19e83a734df18a7f45b299ad6fa6 100644 (file)
@@ -15,8 +15,6 @@
 #include <linux/pid_namespace.h>
 #include <lttng-events.h>
 #include <wrapper/ringbuffer/frontend_types.h>
-#include <wrapper/vmalloc.h>
-#include <wrapper/namespace.h>
 #include <lttng-tracer.h>
 
 #if defined(CONFIG_PID_NS) && \
@@ -48,7 +46,7 @@ void pid_ns_record(struct lttng_ctx_field *field,
        ns = task_active_pid_ns(current);
 
        if (ns)
-               pid_ns_inum = ns->lttng_ns_inum;
+               pid_ns_inum = ns->ns.inum;
 
        lib_ring_buffer_align_ctx(ctx, lttng_alignof(pid_ns_inum));
        chan->ops->event_write(ctx, &pid_ns_inum, sizeof(pid_ns_inum));
@@ -70,7 +68,7 @@ void pid_ns_get_value(struct lttng_ctx_field *field,
        ns = task_active_pid_ns(current);
 
        if (ns)
-               pid_ns_inum = ns->lttng_ns_inum;
+               pid_ns_inum = ns->ns.inum;
 
        value->s64 = pid_ns_inum;
 }
@@ -98,7 +96,6 @@ int lttng_add_pid_ns_to_ctx(struct lttng_ctx **ctx)
        field->record = pid_ns_record;
        field->get_value = pid_ns_get_value;
        lttng_context_update(*ctx);
-       wrapper_vmalloc_sync_all();
        return 0;
 }
 EXPORT_SYMBOL_GPL(lttng_add_pid_ns_to_ctx);
This page took 0.024328 seconds and 4 git commands to generate.