X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Fwrapper%2Firqdesc.c;h=34968df25c9183f8ee91854dde9abef4bed6c4aa;hb=756a020cce15ab4ae515051c469437713ad6515d;hp=7135c5447421a1f47554abb80ba7ad0340e0bfeb;hpb=0193412d9db9b24752bd1fbcabc7d1cc74c270c4;p=lttng-modules.git diff --git a/src/wrapper/irqdesc.c b/src/wrapper/irqdesc.c index 7135c544..34968df2 100644 --- a/src/wrapper/irqdesc.c +++ b/src/wrapper/irqdesc.c @@ -4,7 +4,7 @@ * * 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 */ @@ -12,8 +12,9 @@ #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)) || \ + (LTTNG_LINUX_VERSION_CODE < LTTNG_KERNEL_VERSION(3,4,0)))) #include #include