Move headers under include/
[lttng-modules.git] / tests / probes / lttng-test.c
index 2219f86d399b8e395fefe126dac02923a9d03445..5f29fb92d9ad5aeba8dbbf9d7ae5b497f843d003 100644 (file)
@@ -13,9 +13,8 @@
 #include <linux/byteorder/generic.h>
 #include <asm/byteorder.h>
 
-#include <lttng-events.h>
-#include <lttng-tracer.h>
-#include <wrapper/tracepoint.h>
+#include <lttng/lttng-events.h>
+#include <lttng/lttng-tracer.h>
 
 #define TP_MODULE_NOAUTOLOAD
 #define LTTNG_PACKAGE_BUILD
@@ -81,22 +80,15 @@ end:
        return written;
 }
 
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
 static const struct proc_ops lttng_test_filter_event_proc_ops = {
        .proc_write = lttng_test_filter_event_write,
 };
-#else
-static const struct file_operations lttng_test_filter_event_proc_ops = {
-       .write = lttng_test_filter_event_write,
-};
-#endif
 
 static
 int __init lttng_test_init(void)
 {
        int ret = 0;
 
-       (void) wrapper_lttng_fixup_sig(THIS_MODULE);
        lttng_test_filter_event_dentry =
                        proc_create_data(LTTNG_TEST_FILTER_EVENT_FILE,
                                S_IRUGO | S_IWUGO, NULL,
This page took 0.025599 seconds and 4 git commands to generate.