From: Ovidiu Panait Date: Thu, 14 May 2020 11:27:17 +0000 (+0300) Subject: Update: Use vmalloc_sync_mappings for stable kernels X-Git-Tag: v2.13.0-rc1~214 X-Git-Url: http://git.liburcu.org/?p=lttng-modules.git;a=commitdiff_plain;h=2b3dbafc429e1db16d1f3bc30b95b0bc92932d42 Update: Use vmalloc_sync_mappings for stable kernels Starting from v5.4.28/v5.2.37/v4.19.113/v4.14.175/v4.9.218/v4.4.218, stable kernel branches backported v5.6 upstream commit [1], causing the following warnings: ... [ 483.242037] LTTng: vmalloc_sync_all symbol lookup failed. [ 483.257056] Page fault handler and NMI tracing might trigger faults. ... Extend check for vmalloc_sync_mappings for stable kernels as well. [1] https://github.com/torvalds/linux/commit/763802b53a427ed3cbd419dbba255c414fdd9e7c [ Edit: minor coding style fix by Mathieu Desnoyers. ] Signed-off-by: Ovidiu Panait Signed-off-by: Mathieu Desnoyers --- diff --git a/include/wrapper/vmalloc.h b/include/wrapper/vmalloc.h index 2f640acc..66b14066 100644 --- a/include/wrapper/vmalloc.h +++ b/include/wrapper/vmalloc.h @@ -20,8 +20,15 @@ #include #include +#include -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0) \ + || LTTNG_KERNEL_RANGE(5,4,28, 5,5,0) \ + || LTTNG_KERNEL_RANGE(5,2,37, 5,3,0) \ + || LTTNG_KERNEL_RANGE(4,19,113, 4,20,0) \ + || LTTNG_KERNEL_RANGE(4,14,175, 4,15,0) \ + || LTTNG_KERNEL_RANGE(4,9,218, 4,10,0) \ + || LTTNG_KERNEL_RANGE(4,4,218, 4,5,0)) static inline void wrapper_vmalloc_sync_mappings(void) @@ -72,7 +79,13 @@ void wrapper_vmalloc_sync_mappings(void) #else -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0) \ + || LTTNG_KERNEL_RANGE(5,4,28, 5,5,0) \ + || LTTNG_KERNEL_RANGE(5,2,37, 5,3,0) \ + || LTTNG_KERNEL_RANGE(4,19,113, 4,20,0) \ + || LTTNG_KERNEL_RANGE(4,14,175, 4,15,0) \ + || LTTNG_KERNEL_RANGE(4,9,218, 4,10,0) \ + || LTTNG_KERNEL_RANGE(4,4,218, 4,5,0)) static inline void wrapper_vmalloc_sync_mappings(void)