From 82cac8f8ef291db619f7bd8c9ba7c9c9943f9cd9 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Sat, 1 Nov 2025 14:02:07 +0530 Subject: [PATCH] Add BPF_GET_SMP_PROCESSOR_ID to HelperIDs --- pythonbpf/helper/bpf_helper_handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pythonbpf/helper/bpf_helper_handler.py b/pythonbpf/helper/bpf_helper_handler.py index 420c1c5..e231db9 100644 --- a/pythonbpf/helper/bpf_helper_handler.py +++ b/pythonbpf/helper/bpf_helper_handler.py @@ -28,6 +28,7 @@ class BPFHelperID(Enum): BPF_KTIME_GET_NS = 5 BPF_PRINTK = 6 BPF_GET_PRANDOM_U32 = 7 + BPF_GET_SMP_PROCESSOR_ID = 8 BPF_GET_CURRENT_PID_TGID = 14 BPF_GET_CURRENT_COMM = 16 BPF_PERF_EVENT_OUTPUT = 25