From 67cac982d2281c0e2187adcc6c722009e1bc0c89 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 7 Mar 2021 15:36:32 +0100 Subject: dashboard/config/linux: disable BPF_JIT on subset of instances Currently we enable JIT always and don't test interpreter. Enable JIT on subset of instances and disable on others using kernel config. --- executor/common_linux.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'executor/common_linux.h') diff --git a/executor/common_linux.h b/executor/common_linux.h index b9af290eb..178298278 100644 --- a/executor/common_linux.h +++ b/executor/common_linux.h @@ -4645,8 +4645,6 @@ static void setup_sysctl() {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, #endif {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, - // This gives more interesting coverage. - {"/proc/sys/net/core/bpf_jit_enable", "1"}, // bpf_jit_kallsyms and disabling bpf_jit_harden are required // for unwinding through bpf functions. {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, -- cgit mrf-deployment