X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=wrapper%2Ftracepoint.h;h=880638b9d9f2ceb742b6618c4c07ed2d1e60d54e;hb=7c6d929d62a6e24fb1dbeaee5cd2c8afe77720b7;hp=23bc6e2590fedcc21072f0eb2d91dd45d95beb86;hpb=c1b0a62512c0dad3c79f3eb29ed29d3a702f2274;p=lttng-modules.git diff --git a/wrapper/tracepoint.h b/wrapper/tracepoint.h index 23bc6e25..880638b9 100644 --- a/wrapper/tracepoint.h +++ b/wrapper/tracepoint.h @@ -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) * * wrapper/tracepoint.h * @@ -14,12 +14,6 @@ #include #include -#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35)) - -#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) - -#endif - #ifndef HAVE_KABI_2635_TRACEPOINT #define kabi_2635_tracepoint_probe_register tracepoint_probe_register @@ -29,7 +23,7 @@ #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0)) -#include +#include #define lttng_wrapper_tracepoint_probe_register lttng_tracepoint_probe_register #define lttng_wrapper_tracepoint_probe_unregister lttng_tracepoint_probe_unregister @@ -52,7 +46,7 @@ void lttng_tracepoint_exit(void) #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0)) */ -#ifdef CONFIG_MODULE_SIG +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG)) #include #include @@ -74,9 +68,9 @@ int wrapper_tracepoint_module_notify(struct notifier_block *nb, } } -#endif /* CONFIG_MODULE_SIG */ +#endif /* #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG)) */ -#if defined(CONFIG_MODULE_SIG) && defined(MODULE) +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG) && defined(MODULE)) static inline int wrapper_lttng_fixup_sig(struct module *mod) @@ -97,7 +91,7 @@ int wrapper_lttng_fixup_sig(struct module *mod) return ret; } -#else /* #if defined(CONFIG_MODULE_SIG) && defined(MODULE) */ +#else /* #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG) && defined(MODULE)) */ static inline int wrapper_lttng_fixup_sig(struct module *mod) @@ -105,7 +99,7 @@ int wrapper_lttng_fixup_sig(struct module *mod) return 0; } -#endif /*#else #if defined(CONFIG_MODULE_SIG) && defined(MODULE) */ +#endif /* #else #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG) && defined(MODULE)) */ #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0)) static inline struct tracepoint *lttng_tracepoint_ptr_deref(tracepoint_ptr_t *p) @@ -113,7 +107,7 @@ static inline struct tracepoint *lttng_tracepoint_ptr_deref(tracepoint_ptr_t *p) return tracepoint_ptr_deref(p); } #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0)) */ -static inline struct tracepoint *lttng_tracepoint_ptr_deref(struct tracepoint **p) +static inline struct tracepoint *lttng_tracepoint_ptr_deref(struct tracepoint * const *p) { return *p; }