From 9ef18fa22e6f9d8d891bedeb4ed09a5d552dcc07 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Tue, 5 Apr 2016 17:15:27 -0400 Subject: [PATCH] lttng-modules: Disable CONFIG_STACK_VALIDATION --- scripts/lttng-modules/param-build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/lttng-modules/param-build.sh b/scripts/lttng-modules/param-build.sh index c14bace..b576696 100644 --- a/scripts/lttng-modules/param-build.sh +++ b/scripts/lttng-modules/param-build.sh @@ -64,6 +64,9 @@ prepare_lnx_sources() { # Don't try to sign modules sed -i "s/CONFIG_MODULE_SIG=y/# CONFIG_MODULE_SIG is not set/g" "${outdir}"/.config + # Disable kernel stack frame correctness validation, introduced in 4.6.0 and currently fails + sed -i "s/CONFIG_STACK_VALIDATION=y/# CONFIG_STACK_VALIDATION is not set/g" "${outdir}"/.config + # Enable CONFIG_KALLSYMS_ALL echo "CONFIG_KPROBES=y" >> "${outdir}"/.config echo "CONFIG_FTRACE=y" >> "${outdir}"/.config -- 2.34.1