From 1d618748df5c107151e5d4580fad270ccb79a243 Mon Sep 17 00:00:00 2001 From: Ovidiu Panait Date: Thu, 14 May 2020 13:05:24 +0300 Subject: [PATCH] Fix: Use vmalloc_sync_mappings on kernel 5.6 as well Upstream commit [1], that got rid of vmalloc_sync_all and introduced vmalloc_sync_mappings, is a v5.6 commit: $ git tag --contains 763802b53a427ed3cbd419dbba255c414fdd9e7c v5.6 v5.6-rc7 v5.7-rc1 v5.7-rc2 v5.7-rc3 Extend the LINUX_VERSION_CODE check to v5.6 to fix the following warnings: ... [ 483.242037] LTTng: vmalloc_sync_all symbol lookup failed. [ 483.257056] Page fault handler and NMI tracing might trigger faults. ... [1] https://github.com/torvalds/linux/commit/763802b53a427ed3cbd419dbba255c414fdd9e7c Signed-off-by: Ovidiu Panait Signed-off-by: Mathieu Desnoyers --- include/wrapper/vmalloc.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/wrapper/vmalloc.h b/include/wrapper/vmalloc.h index 26a836d0..2f640acc 100644 --- a/include/wrapper/vmalloc.h +++ b/include/wrapper/vmalloc.h @@ -21,7 +21,7 @@ #include #include -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) static inline void wrapper_vmalloc_sync_mappings(void) @@ -43,7 +43,7 @@ void wrapper_vmalloc_sync_mappings(void) } } -#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) */ +#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) */ /* * Map vmalloc_sync_mappings to vmalloc_sync_all() on kernels before 5.7. @@ -68,11 +68,11 @@ void wrapper_vmalloc_sync_mappings(void) } } -#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) */ +#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) */ #else -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) static inline void wrapper_vmalloc_sync_mappings(void) @@ -80,7 +80,7 @@ void wrapper_vmalloc_sync_mappings(void) return vmalloc_sync_mappings(); } -#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) */ +#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) */ static inline void wrapper_vmalloc_sync_mappings(void) @@ -88,7 +88,7 @@ void wrapper_vmalloc_sync_mappings(void) return vmalloc_sync_all(); } -#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) */ +#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) */ #endif -- 2.34.1