Move headers under include/
[lttng-modules.git] / probes / lttng.c
index 7a2a74a1e8a36cf481e9bb95d49d24c4aa229a1f..735b167dbe71fda226e2ab66e6d9ca20fa8292aa 100644 (file)
@@ -16,7 +16,7 @@
 #include <linux/slab.h>
 #include <linux/mm.h>
 #include <linux/miscdevice.h>
-#include <lttng-events.h>
+#include <lttng/lttng-events.h>
 
 #define TP_MODULE_NOAUTOLOAD
 #define LTTNG_PACKAGE_BUILD
@@ -92,17 +92,9 @@ static const struct file_operations lttng_logger_operations = {
        .write = lttng_logger_write,
 };
 
-/*
- * Linux 5.6 introduced a separate proc_ops struct for /proc operations
- * to decouple it from the vfs.
- */
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
 static const struct proc_ops lttng_logger_proc_ops = {
        .proc_write = lttng_logger_write,
 };
-#else
-#define lttng_logger_proc_ops lttng_logger_operations
-#endif
 
 static struct miscdevice logger_dev = {
        .minor = MISC_DYNAMIC_MINOR,
This page took 0.023666 seconds and 4 git commands to generate.