X-Git-Url: http://git.liburcu.org/?p=lttng-modules.git;a=blobdiff_plain;f=probes%2Flttng.c;h=b63ffdf3e6fc9b2ecd12690652dd000099ea4b89;hp=09045fac18529702ad2ceac0ce7319c8cf2f549b;hb=dd054d094b5d0bb7248ecfd32b021e124ed2b774;hpb=0e935eaed31a456b3379cb960b8fa75843c33855 diff --git a/probes/lttng.c b/probes/lttng.c index 09045fac..b63ffdf3 100644 --- a/probes/lttng.c +++ b/probes/lttng.c @@ -105,6 +105,18 @@ 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 + int __init lttng_logger_init(void) { int ret = 0; @@ -112,7 +124,7 @@ int __init lttng_logger_init(void) wrapper_vmalloc_sync_all(); lttng_logger_dentry = proc_create_data(LTTNG_LOGGER_FILE, S_IRUGO | S_IWUGO, NULL, - <tng_logger_operations, NULL); + <tng_logger_proc_ops, NULL); if (!lttng_logger_dentry) { printk(KERN_ERR "Error creating LTTng logger file\n"); ret = -ENOMEM;