Skip to content

Commit

Permalink
Update: Use vmalloc_sync_mappings for stable kernels
Browse files Browse the repository at this point in the history
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] torvalds/linux@763802b

[ Edit: minor coding style fix by Mathieu Desnoyers. ]

Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  • Loading branch information
opanait-wr authored and compudj committed May 14, 2020
1 parent da356b3 commit 5939591
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions wrapper/vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,15 @@

#include <linux/kallsyms.h>
#include <wrapper/kallsyms.h>
#include <lttng-kernel-version.h>

#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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 5939591

Please sign in to comment.