Move wrapper/ringbuffer to include/ringbuffer
[lttng-modules.git] / lttng-context-uts-ns.c
index c6c6d072ba6dfbb619046bab2970484fed6702bd..684c32163957a1fc1e4fa76285c30bbcb56a8ff9 100644 (file)
 #include <linux/sched.h>
 #include <linux/utsname.h>
 #include <lttng-events.h>
-#include <wrapper/ringbuffer/frontend_types.h>
-#include <wrapper/namespace.h>
+#include <include/ringbuffer/frontend_types.h>
 #include <lttng-tracer.h>
 
-#if defined(CONFIG_UTS_NS) && \
-       (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
+#if defined(CONFIG_UTS_NS)
 
 static
 size_t uts_ns_get_size(size_t offset)
@@ -46,7 +44,7 @@ void uts_ns_record(struct lttng_ctx_field *field,
         * namespaces, just dereference the pointers.
         */
        if (current->nsproxy)
-               uts_ns_inum = current->nsproxy->uts_ns->lttng_ns_inum;
+               uts_ns_inum = current->nsproxy->uts_ns->ns.inum;
 
        lib_ring_buffer_align_ctx(ctx, lttng_alignof(uts_ns_inum));
        chan->ops->event_write(ctx, &uts_ns_inum, sizeof(uts_ns_inum));
@@ -67,7 +65,7 @@ void uts_ns_get_value(struct lttng_ctx_field *field,
         * namespaces, just dereference the pointers.
         */
        if (current->nsproxy)
-               uts_ns_inum = current->nsproxy->uts_ns->lttng_ns_inum;
+               uts_ns_inum = current->nsproxy->uts_ns->ns.inum;
 
        value->s64 = uts_ns_inum;
 }
This page took 0.023922 seconds and 4 git commands to generate.