From 265eca02b48054bbc719247875d79eabfd82a69e Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 13 Apr 2020 16:54:54 -0400 Subject: [PATCH] probes lttng: remove compatibility code --- probes/lttng.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/probes/lttng.c b/probes/lttng.c index 7a2a74a1..ae7dce64 100644 --- a/probes/lttng.c +++ b/probes/lttng.c @@ -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, -- 2.34.1