X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=tests%2Fprobes%2Flttng-test.c;h=5f29fb92d9ad5aeba8dbbf9d7ae5b497f843d003;hb=b53047135828b997a4eeb2cae7344cb169aa9c8c;hp=e3476393fe2753d541a9015b049d6a32ef690acf;hpb=059de1478e398b662aaf1f5e71f07e0c78600545;p=lttng-modules.git diff --git a/tests/probes/lttng-test.c b/tests/probes/lttng-test.c index e3476393..5f29fb92 100644 --- a/tests/probes/lttng-test.c +++ b/tests/probes/lttng-test.c @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1) +/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) * * lttng-test.c * @@ -13,9 +13,8 @@ #include #include -#include -#include -#include +#include +#include #define TP_MODULE_NOAUTOLOAD #define LTTNG_PACKAGE_BUILD @@ -81,23 +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); - wrapper_vmalloc_sync_all(); lttng_test_filter_event_dentry = proc_create_data(LTTNG_TEST_FILTER_EVENT_FILE, S_IRUGO | S_IWUGO, NULL,