fix: tracepoint: Optimize using static_call() (v5.10)
[lttng-modules.git] / wrapper / tracepoint.h
index 3883e11ab13b82065dd88504ada80260c4a28373..758038b68f08c7f3920d90be155b95b217ceae24 100644 (file)
 
 #endif
 
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,10,0))
+#define LTTNG_DEFINE_TRACE(name, proto, args)          \
+       DEFINE_TRACE(name, PARAMS(proto), PARAMS(args))
+#else
+#define LTTNG_DEFINE_TRACE(name, proto, args)          \
+       DEFINE_TRACE(name)
+#endif
+
 #ifndef HAVE_KABI_2635_TRACEPOINT
 
 #define kabi_2635_tracepoint_probe_register tracepoint_probe_register
This page took 0.023422 seconds and 4 git commands to generate.