From 87d9e47fb4b4bc0070d80843254a7a7db788ad6f Mon Sep 17 00:00:00 2001 From: Alan Maguire Date: Thu, 28 Nov 2024 15:21:10 +0000 Subject: [PATCH] ip_frag_tuner: tunables are not namespaced cannot be set in a non-global ns Signed-off-by: Alan Maguire --- src/ip_frag_tuner.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ip_frag_tuner.c b/src/ip_frag_tuner.c index 92b77df..1389a75 100644 --- a/src/ip_frag_tuner.c +++ b/src/ip_frag_tuner.c @@ -16,9 +16,9 @@ struct tcp_buffer_tuner_bpf *skel; static struct bpftunable_desc descs[] = { { IP_FRAG_MAX_THRESHOLD, BPFTUNABLE_SYSCTL, "net.ipv4.ipfrag_high_thresh", - BPFTUNABLE_NAMESPACED, 1 }, + 0, 1 }, { IP6_FRAG_MAX_THRESHOLD, BPFTUNABLE_SYSCTL, "net.ipv6.ip6frag_high_thresh", - BPFTUNABLE_NAMESPACED | BPFTUNABLE_OPTIONAL, 1 }, + BPFTUNABLE_OPTIONAL, 1 }, }; static struct bpftunable_scenario scenarios[] = {