X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Fwrapper%2Firqdesc.c;h=1bfae91a3c2efad263b166d517bbb7d912085297;hb=47af60228abfb1a7bf20bf1d0709f72a0b978797;hp=397624b564c2617d8fd1d19818a1d32a4b28a7d0;hpb=cfa6cc1d0f01c2cfcc1a679abf3a6572d411c309;p=lttng-modules.git diff --git a/src/wrapper/irqdesc.c b/src/wrapper/irqdesc.c index 397624b5..1bfae91a 100644 --- a/src/wrapper/irqdesc.c +++ b/src/wrapper/irqdesc.c @@ -4,15 +4,16 @@ * * wrapper around irq_to_desc. Using KALLSYMS to get its address when * available, else we need to have a kernel that exports this function to GPL - * modules. This export was added to the 3.4 kernels. + * modules. This export was added to the 3.4 kernels and removed in 5.11. * * Copyright (C) 2011-2012 Mathieu Desnoyers */ #include +#include -#if (defined(CONFIG_KALLSYMS) \ - && (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))) +#if (defined(CONFIG_KALLSYMS) && \ + (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,11,0))) #include #include