[openwrt/openwrt] kernel: fix KERNEL_PROBE_EVENTS_BTF_ARGS

LEDE Commits lede-commits at lists.infradead.org
Thu May 1 15:07:46 PDT 2025


ansuel pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/a8c04725f0465d2ae269e0935a14a080ad6316f1

commit a8c04725f0465d2ae269e0935a14a080ad6316f1
Author: Stijn Tintel <stijn at linux-ipv6.be>
AuthorDate: Thu May 1 23:02:54 2025 +0300

    kernel: fix KERNEL_PROBE_EVENTS_BTF_ARGS
    
    We no longer support kernels < 6.6, so drop the dependency. This fixes a
    missing symbol with 6.12 when KERNEL_DEBUG_INFO_BTF and
    KERNEL_KPROBE_EVENTS are enabled.
    
    Signed-off-by: Stijn Tintel <stijn at linux-ipv6.be>
    Link: https://github.com/openwrt/openwrt/pull/18676
    Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
---
 config/Config-kernel.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/Config-kernel.in b/config/Config-kernel.in
index 1fc27dec58..34c76ee424 100644
--- a/config/Config-kernel.in
+++ b/config/Config-kernel.in
@@ -567,7 +567,7 @@ config KERNEL_BPF_EVENTS
 
 config KERNEL_PROBE_EVENTS_BTF_ARGS
 	bool "Support BTF function arguments for probe events"
-	depends on KERNEL_DEBUG_INFO_BTF && KERNEL_KPROBE_EVENTS && LINUX_6_6
+	depends on KERNEL_DEBUG_INFO_BTF && KERNEL_KPROBE_EVENTS
 
 config KERNEL_BPF_KPROBE_OVERRIDE
 	bool




More information about the lede-commits mailing list