X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=wrapper%2Firqdesc.c;h=d8858c439054390f3e4036e8e82d89475e93348f;hb=7381483908683d2077de407a3a052716afebda67;hp=29427d47dd71a8c622186e184b99e74fcd7c03c1;hpb=ddfdc963e1d202e35a711101a757dfb730a118ce;p=lttng-modules.git diff --git a/wrapper/irqdesc.c b/wrapper/irqdesc.c index 29427d47..d8858c43 100644 --- a/wrapper/irqdesc.c +++ b/wrapper/irqdesc.c @@ -4,15 +4,17 @@ * * 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) && \ + ((LINUX_VERSION_CODE >= KERNEL_VERSION(5,11,0)) || \ + (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)))) #include #include @@ -34,6 +36,7 @@ struct irq_desc *wrapper_irq_to_desc(unsigned int irq) return NULL; } } +EXPORT_SYMBOL_GPL(wrapper_irq_to_desc); #else @@ -44,5 +47,6 @@ struct irq_desc *wrapper_irq_to_desc(unsigned int irq) { return irq_to_desc(irq); } +EXPORT_SYMBOL_GPL(wrapper_irq_to_desc); #endif