X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=wrapper%2Firqdesc.c;h=6dcfaf99a7f89f5443cddfbb0e0888554d26fadc;hb=30e736e5c2121dfb03abda8e108623fef7da85c0;hp=02c44c8001abe3273fe54d9681ed6a91dbc386ad;hpb=f0883e02d6d212c6b4a67849e9006d1c36b43a29;p=lttng-modules.git diff --git a/wrapper/irqdesc.c b/wrapper/irqdesc.c index 02c44c80..6dcfaf99 100644 --- a/wrapper/irqdesc.c +++ b/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