From 102e4ca78cda6fa2b3294ef3403c90185a7f8534 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Mon, 24 Nov 2025 22:50:39 +0530 Subject: [PATCH 01/10] add disksnoop example --- BCC-Examples/disksnoop.py | 57 +++++++++++++++++++++++++++++++ tests/c-form/disksnoop.bpf.c | 66 ++++++++++++++++++++++++++++++++++++ 2 files changed, 123 insertions(+) create mode 100644 BCC-Examples/disksnoop.py create mode 100644 tests/c-form/disksnoop.bpf.c diff --git a/BCC-Examples/disksnoop.py b/BCC-Examples/disksnoop.py new file mode 100644 index 0000000..d758c0e --- /dev/null +++ b/BCC-Examples/disksnoop.py @@ -0,0 +1,57 @@ +from vmlinux import struct_request, struct_pt_regs +from pythonbpf import bpf, section, bpfglobal, compile_to_ir, compile, map +from pythonbpf.helper import ktime +from pythonbpf.maps import HashMap +import logging +from ctypes import c_int64, c_uint64, c_uint32, c_int32 + +# Constants +REQ_WRITE = 1 # from include/linux/blk_types.h + +@bpf +@map +def start() -> HashMap: + return HashMap(key=c_uint64, value=c_uint64, max_entries=10240) + +@bpf +@section("kprobe/blk_mq_end_request") +def trace_completion(ctx: struct_pt_regs) -> c_int64: + # Get request pointer from first argument + req_ptr = ctx.di + req = struct_request(ctx.di) + # Print: data_len, cmd_flags, latency_us + data_len = req.__data_len + cmd_flags = req.cmd_flags + # Lookup start timestamp + req_tsp = start.lookup(req_ptr) + if req_tsp: + # Calculate delta in nanoseconds + delta = ktime() - req_tsp + + # Convert to microseconds for printing + delta_us = delta // 1000 + + print(f"{data_len} {cmd_flags:x} {delta_us}\n") + + # Delete the entry + start.delete(req_ptr) + + return c_int64(0) + +@bpf +@section("kprobe/blk_mq_start_request") +def trace_start(ctx1: struct_pt_regs) -> c_int32: + req = ctx1.di + ts = ktime() + start.update(req, ts) + return c_int32(0) + +@bpf +@bpfglobal +def LICENSE() -> str: + return "GPL" + + +if __name__ == "__main__": + compile_to_ir("disksnoop.py", "disksnoop.ll", loglevel=logging.INFO) + compile() diff --git a/tests/c-form/disksnoop.bpf.c b/tests/c-form/disksnoop.bpf.c new file mode 100644 index 0000000..79582f7 --- /dev/null +++ b/tests/c-form/disksnoop.bpf.c @@ -0,0 +1,66 @@ +// disksnoop.bpf.c +// eBPF program (compile with: clang -O2 -g -target bpf -c disksnoop.bpf.c -o disksnoop.bpf.o) + +#include "vmlinux.h" +#include +#include + +char LICENSE[] SEC("license") = "GPL"; + +struct { + __uint(type, BPF_MAP_TYPE_HASH); + __type(key, __u64); + __type(value, __u64); + __uint(max_entries, 10240); +} start_map SEC(".maps"); + +/* kprobe: record start timestamp keyed by request pointer */ +SEC("kprobe/blk_mq_start_request") +int trace_start(struct pt_regs *ctx) +{ + /* request * is first arg */ + __u64 reqp = (__u64)(ctx->di); + __u64 ts = bpf_ktime_get_ns(); + + bpf_map_update_elem(&start_map, &reqp, &ts, BPF_ANY); + +// /* optional debug: + bpf_printk("start: req=%llu ts=%llu\n", reqp, ts); +// */ + return 0; +} + +/* completion: compute latency and print data_len, cmd_flags, latency_us */ +SEC("kprobe/blk_mq_end_request") +int trace_completion(struct pt_regs *ctx) +{ + __u64 reqp = (__u64)(ctx->di); + __u64 *tsp; + __u64 now_ns; + __u64 delta_ns; + __u64 delta_us = 0; + bpf_printk("%lld", reqp); + tsp = bpf_map_lookup_elem(&start_map, &reqp); + if (!tsp) + return 0; + + now_ns = bpf_ktime_get_ns(); + delta_ns = now_ns - *tsp; + delta_us = delta_ns / 1000; + + /* read request fields using CO-RE; needs vmlinux.h/BTF */ + __u32 data_len = 0; + __u32 cmd_flags = 0; + + /* __data_len is usually a 32/64-bit; use CORE read to be safe */ + data_len = ( __u32 ) BPF_CORE_READ((struct request *)reqp, __data_len); + cmd_flags = ( __u32 ) BPF_CORE_READ((struct request *)reqp, cmd_flags); + + /* print: " " */ + bpf_printk("%u %x %llu\n", data_len, cmd_flags, delta_us); + + /* remove from map */ + bpf_map_delete_elem(&start_map, &reqp); + + return 0; +} From 7b7b00dbe77f15d4b07ad5b93911b971079fca62 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Tue, 25 Nov 2025 22:51:24 +0530 Subject: [PATCH 02/10] add disksnoop ipynb --- BCC-Examples/disksnoop.ipynb | 3690 ++++++++++++++++++++++++++++++++++ BCC-Examples/disksnoop.py | 6 +- tests/c-form/disksnoop.bpf.c | 68 +- 3 files changed, 3729 insertions(+), 35 deletions(-) create mode 100644 BCC-Examples/disksnoop.ipynb diff --git a/BCC-Examples/disksnoop.ipynb b/BCC-Examples/disksnoop.ipynb new file mode 100644 index 0000000..1f81d01 --- /dev/null +++ b/BCC-Examples/disksnoop.ipynb @@ -0,0 +1,3690 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "c3520e58-e50f-4bc1-8f9d-a6fecbf6e9f0", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2025-11-25 22:47:31,621 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,622 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,622 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,623 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,623 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,623 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,624 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,624 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,625 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,625 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,625 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,626 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,626 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,626 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,627 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,627 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,627 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,628 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,628 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,629 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,629 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,629 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,632 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,632 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,632 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,632 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,638 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,638 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,638 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,638 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,639 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,639 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,640 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,640 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,641 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,642 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,642 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,642 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,643 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,643 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,643 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,644 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,644 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,645 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,645 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,645 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,646 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,646 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,646 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,646 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,647 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,647 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,647 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,648 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,648 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,648 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,649 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,649 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,649 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,650 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,650 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,650 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,650 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,651 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,651 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,651 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,652 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,652 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,653 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,653 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,653 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,654 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,654 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,654 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,655 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,655 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,655 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,655 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,656 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,656 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,656 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,657 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,657 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,657 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,658 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,658 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,658 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,658 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,659 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,659 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,659 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,660 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,660 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,660 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,660 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,661 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,661 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,661 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,662 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,662 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,662 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,663 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,663 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,663 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,663 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,664 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,664 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,664 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,665 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,665 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,665 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,666 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,666 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,666 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,667 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,667 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,667 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,667 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,668 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,668 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,668 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,669 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,669 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,669 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,670 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,670 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,670 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,671 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,671 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,671 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,671 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,672 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,672 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,672 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,673 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,673 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,673 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,673 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,674 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,674 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,675 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,675 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,675 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,676 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,676 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,676 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,677 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,677 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,677 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,678 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,678 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,678 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,679 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,679 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,680 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,680 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,680 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,681 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,681 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,681 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,681 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,683 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,683 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,683 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,684 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,684 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,684 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,691 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,691 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,691 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,692 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,692 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,693 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,694 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,695 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,695 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,696 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,696 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:31,697 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,145 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,146 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,146 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,146 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,151 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,151 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,151 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,152 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,152 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,152 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,153 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,153 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,153 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,154 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,154 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,154 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,154 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,155 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,155 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,158 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,159 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,159 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,159 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,159 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,161 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,161 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,161 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,163 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,163 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,163 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,163 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,167 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,167 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,167 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,167 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,168 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,168 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,168 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,168 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,169 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,169 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,169 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,170 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,170 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,170 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,173 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,173 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,173 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,174 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,174 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,174 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,175 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,175 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,175 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,185 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,185 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,185 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,186 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,186 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,186 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,187 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,187 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,187 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,190 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,190 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,190 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,190 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,191 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,191 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,191 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,191 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,192 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,192 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,192 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,194 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,201 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,201 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,201 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,201 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,202 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,202 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,203 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,203 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,204 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,204 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,205 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,205 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,205 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,206 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,206 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,206 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,207 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,208 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,208 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,209 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,210 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,211 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,212 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,212 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,213 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,213 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,213 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,216 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,216 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,216 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,216 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,217 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,217 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,217 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,218 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,218 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,218 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,219 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,219 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,222 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,222 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,222 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,223 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,223 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,223 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,223 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,224 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,224 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,225 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,225 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,225 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,226 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,226 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,226 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,226 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,227 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,227 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,227 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,227 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,229 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,229 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,229 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,229 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,234 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,234 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,234 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,243 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,250 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,250 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,250 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,250 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,261 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,261 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,261 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,261 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,264 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,268 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,268 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,271 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,271 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,271 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,271 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,277 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,277 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,278 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,278 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,280 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,280 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,280 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,280 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,282 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,282 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,282 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,283 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,283 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,283 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,284 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,284 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,284 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,285 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,285 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,285 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,285 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,287 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,287 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,289 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,289 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,290 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,291 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,291 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,291 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,291 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,295 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,296 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,296 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,298 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,298 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,298 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,298 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,299 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,299 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,299 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,299 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,300 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,300 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,302 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,303 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,303 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,304 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,304 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,304 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,305 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,305 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,306 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,306 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,306 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,307 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,307 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,307 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,308 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,308 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,308 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,309 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,309 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,309 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,310 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,310 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,310 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,313 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,313 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,314 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,314 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,314 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,315 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,315 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,315 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,316 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,316 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,316 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,316 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,317 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,317 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,317 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,318 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,318 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,318 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,319 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,319 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,319 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,320 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,320 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,320 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,321 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,321 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,321 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,322 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,322 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,322 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,322 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,325 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,325 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,340 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,343 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,343 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,343 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,343 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,344 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,344 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,344 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,345 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,345 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,345 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,345 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,351 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,351 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,351 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,351 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,352 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,352 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,352 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,352 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,358 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,358 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,360 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,360 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,360 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,360 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,365 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,365 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,365 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,365 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,368 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,370 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,371 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,371 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,371 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,371 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,372 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,372 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,372 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,372 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,373 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,373 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,373 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,373 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,374 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,374 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,374 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,377 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,377 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,378 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,378 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,378 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,378 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,379 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,379 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,379 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,379 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,380 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,380 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,380 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,382 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,382 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,382 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,382 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,383 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,383 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,384 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,384 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,384 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,384 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,403 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,403 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,403 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,404 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,404 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,404 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,404 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,405 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,405 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,405 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,406 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,407 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,407 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,412 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,412 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,413 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,413 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,413 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,413 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,415 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,416 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,416 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,417 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,417 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,418 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,418 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,418 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,419 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,419 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,419 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,420 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,420 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,420 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,420 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,421 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,421 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,421 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,421 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,422 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,422 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,422 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,423 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,423 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,424 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,424 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,424 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,425 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,425 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,425 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,425 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,426 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,426 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,426 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,426 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,427 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,427 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,427 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,427 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,428 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,428 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,428 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,429 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,429 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,429 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,429 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,430 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,430 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,430 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,431 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,431 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,431 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,432 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,432 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,432 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,433 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,433 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,433 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,434 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,434 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,434 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,435 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,435 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,435 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,436 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,436 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,436 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,437 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,437 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,437 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,438 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,438 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,438 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,439 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,439 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,440 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,440 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,440 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,440 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,455 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,455 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,455 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,455 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,457 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,457 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,457 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,457 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,459 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,459 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,459 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,460 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,460 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,462 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,463 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,463 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,463 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,464 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,464 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,464 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,465 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,465 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,465 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,465 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,466 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,466 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,466 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,472 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,477 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,477 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,479 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,479 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,482 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,482 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,482 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,483 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,483 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,483 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,483 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,485 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,485 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,486 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,486 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,486 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,486 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,490 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,490 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,494 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,494 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,494 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,495 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,495 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,495 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,495 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,496 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,496 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,496 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,497 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,497 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,497 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,498 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,500 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,500 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,500 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,503 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,503 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,503 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,504 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,504 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,505 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,505 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,505 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,506 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,507 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,507 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,507 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,509 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,509 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,510 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,513 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,513 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,514 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,514 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,516 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,516 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,517 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,517 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,517 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,518 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,521 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,521 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,522 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,522 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,523 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,524 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,524 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,524 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,527 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,527 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,527 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,527 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,528 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,528 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,529 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,529 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,529 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,530 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,530 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,531 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,531 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,531 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,532 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,532 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,532 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,533 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,533 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,533 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,533 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,534 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,534 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,534 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,535 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,535 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,535 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,536 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,536 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,536 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,537 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,537 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,537 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,538 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,539 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,539 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,540 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,541 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,542 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,542 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,545 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,545 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,545 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,546 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,549 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,549 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,549 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,550 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,550 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,550 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,550 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,554 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,554 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,554 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,554 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,555 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,555 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,555 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,555 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,558 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,558 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,559 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,559 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,559 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,561 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,561 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,561 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,562 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,562 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,562 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,563 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,563 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,563 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,564 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,564 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,565 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,565 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,565 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,565 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,570 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,573 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,573 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,573 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,574 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,574 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", + "2025-11-25 22:47:32,577 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freelist is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,577 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_freelist_aba_t\n", + "2025-11-25 22:47:32,577 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_kmem_cache_cpu_0\n", + "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_slab_0_0_0\n", + "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_slab_0_0_1_0_0\n", + "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_slab_0_0_1\n", + "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field func is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_slab_0\n", + "2025-11-25 22:47:32,581 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,581 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,581 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,581 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_qspinlock_0\n", + "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_spinlock_0\n", + "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field filter is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field uevent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field uevent_ops is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field store is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field f_mapping is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field read is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field llseek is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mmap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field is_visible is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field is_bin_visible is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field child_ns_type is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field namespace is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_ownership is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_options is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mkdir is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rmdir is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rename is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_path is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field syscall_ops is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field open is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seq_show is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seq_start is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seq_next is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seq_stop is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field read is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poll is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mmap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field llseek is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_kernfs_node_0\n", + "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field __lstate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_qrwlock_0\n", + "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,592 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,592 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,592 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,592 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iattr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,593 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,593 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,593 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ctor is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field random_seq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,595 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field node is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_sched is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field exit_sched is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_hctx is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field exit_hctx is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field depth_updated is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field allow_merge is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bio_merge is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field request_merge is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field request_merged is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field requests_merged is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field limit_depth is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prepare_request is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field finish_request is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field insert_requests is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dispatch_request is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field has_work is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field completed_request is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field requeue_request is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field former_request is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field next_request is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_icq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field exit_icq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field store is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field store is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field setup is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field test is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field string is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field num is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ops is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_kernel_param_0\n", + "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,605 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attrs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,605 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,605 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,610 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,611 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field strtab is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field typetab is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attrs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,619 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attrs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,619 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field gp_seq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,619 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seglen is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,620 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,620 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field function is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,621 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,621 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field func is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,622 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,622 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field srcu_have_cbs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,623 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field srcu_data_have_cbs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,623 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field srcu_parent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,624 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,624 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mynode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ssp is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_worker_0\n", + "2025-11-25 22:47:32,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bits is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cpumask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field __pod_cpumask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field busy_hash is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field manager is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field detach_completion is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,632 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attrs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,632 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,632 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union___call_single_node_0\n", + "2025-11-25 22:47:32,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field func is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bucket is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bitmap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field queue is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,639 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,639 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_maple_tree_0\n", + "2025-11-25 22:47:32,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field counters is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field load_binary is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field load_shlib is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field core_dump is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field confirm_switch is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_page_0_0_0\n", + "2025-11-25 22:47:32,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_posix_acl_entry_0\n", + "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field a_entries is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field lookup is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_link is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field permission is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_inode_acl is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field readlink is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field create is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field link is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unlink is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field symlink is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mkdir is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rmdir is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mknod is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rename is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field setattr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field getattr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field listxattr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fiemap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field update_time is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field atomic_open is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field tmpfile is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_acl is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_acl is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fileattr_set is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fileattr_get is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_offset_ctx is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field type is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_fs_context is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parameters is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mount is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field kill_sb is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,660 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field owner is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,660 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field next is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,660 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field s_writers_key is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,660 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc_inode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,661 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field destroy_inode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,661 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_inode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,661 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dirty_inode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_inode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field drop_inode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field evict_inode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field put_super is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_fs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze_super is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze_fs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field thaw_super is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unfreeze_fs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,665 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field statfs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,665 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field remount_fs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field umount_begin is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_options is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_devname is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_path is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,667 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,667 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_read is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,667 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_write is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,668 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_dquots is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,668 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nr_cached_objects is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,668 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_cached_objects is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,668 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shutdown is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,669 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_dquot is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,669 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc_dquot is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,669 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field destroy_dquot is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,670 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field acquire_dquot is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,670 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release_dquot is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,670 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mark_dirty is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,671 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_info is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,671 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_reserved_space is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,671 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_projid is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,671 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_inode_usage is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,672 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_next_id is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,672 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_on is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,672 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_off is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,673 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_enable is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,673 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_disable is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,673 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_sync is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,674 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_info is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,674 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_dqblk is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,674 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_nextdqblk is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_dqblk is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_state is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rm_xquota is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field encode_fh is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fh_to_dentry is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fh_to_parent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_parent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field commit_metadata is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_uuid is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_blocks is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,677 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field commit_blocks is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,677 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_qstr_0\n", + "2025-11-25 22:47:32,677 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,677 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_lockref_0\n", + "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_revalidate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,680 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_weak_revalidate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,681 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_hash is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,681 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_compare is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,682 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_delete is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,682 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_init is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,682 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,682 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_prune is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,683 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_iput is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,683 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_dname is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,683 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_automount is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,684 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_manage is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,684 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_real is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,684 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_dentry_0\n", + "2025-11-25 22:47:32,685 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,685 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,685 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,686 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_dentry_d_u\n", + "2025-11-25 22:47:32,686 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,686 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,686 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,687 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_iname is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,687 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_op is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,687 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_sb is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,687 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prefix is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field list is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field legacy_key_prefix is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_context is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_context is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_dummy_policy is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field empty_dir is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field has_stable_inodes is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,690 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_devices is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,690 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,690 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field key_hashtable is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,690 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field begin_enable_verity is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field end_enable_verity is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_verity_descriptor is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field read_merkle_tree_page is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_merkle_tree_block is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field utf8agetab is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field utf8nfdicfdata is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field utf8nfdidata is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field utf8data is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,693 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,693 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ntab is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,693 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field tables is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,693 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_register is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_reserve is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_preempt is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_clear is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_read_keys is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_read_reservation is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field submit_bio is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poll_bio is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field open is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ioctl is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,696 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field compat_ioctl is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,696 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field check_events is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,696 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unlock_native_capacity is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,696 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field getgeo is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_read_only is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_disk is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field swap_slot_free_notify is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field report_zones is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field devnode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_unique_id is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,698 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alternative_gpt_sector is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,698 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release_agent_path is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,699 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,699 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field x is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,700 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,700 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field tasks is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,700 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field times is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,700 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field times_prev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pcpu is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg_total is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg_nr_triggers is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field total is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rtpoll_task is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rtpoll_nr_triggers is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,703 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rtpoll_total is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,703 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_btf_type_0\n", + "2025-11-25 22:47:32,703 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,704 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,704 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field filters is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,704 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,705 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dtor is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,705 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,706 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_btf_field_0\n", + "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fields is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field record is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field types is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,709 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resolved_ids is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,709 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resolved_sizes is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,709 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field strings is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,709 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field kfunc_set_tab is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dtor_kfunc_tab is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field struct_meta_tab is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field base_btf is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,711 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field func is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,711 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field saved_func is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,712 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ops_func is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,712 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field arg_size is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,712 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field arg_flags is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,713 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,713 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,714 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,714 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,715 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_bpf_tramp_image_0\n", + "2025-11-25 22:47:32,715 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,715 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,716 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,716 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field progs_cnt is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,717 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,717 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cur_image is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,717 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mod is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,718 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field start is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,718 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field stop is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,719 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field next is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,719 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,719 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_seq_private is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,720 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fini_seq_private is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,720 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,721 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_alloc_check is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,721 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_alloc is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,721 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,722 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_free is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,722 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_get_next_key is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,722 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_release_uref is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,723 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_elem_sys_only is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,723 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_batch is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,723 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_and_delete_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,723 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_and_delete_batch is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,724 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_update_batch is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,724 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_delete_batch is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,724 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,724 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_update_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,725 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_delete_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,725 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_push_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,730 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_pop_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,732 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_peek_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,733 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_percpu_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,733 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_fd_get_ptr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,733 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_fd_put_ptr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_gen_lookup is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_fd_sys_lookup_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_seq_show_elem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_check_btf is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_poke_track is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,735 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_poke_untrack is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,735 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_poke_run is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,735 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_direct_value_addr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,736 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_direct_value_meta is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,736 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_mmap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,736 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_poll is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,737 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_local_storage_charge is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,737 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_local_storage_uncharge is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,737 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_owner_storage_ptr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,737 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_redirect is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_meta_equal is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_set_for_each_callback_args is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_for_each_callback is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_mem_usage is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_btf_id is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,739 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iter_seq_info is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,740 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_mem_cgroup_0\n", + "2025-11-25 22:47:32,741 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,741 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,741 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,742 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,743 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,744 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,744 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_local is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,744 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events_local is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,745 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_pending is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,745 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events_pending is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,745 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,746 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,746 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vmstats is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,746 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,746 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,747 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_prev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,747 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events_prev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,747 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field targets is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,747 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,748 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,748 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field waitq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,749 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,749 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,749 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,749 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field min_seq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field timestamps is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field folios is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nr_pages is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg_refaulted is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg_total is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,751 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field protected is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,751 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field evicted is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,751 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field refaulted is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,751 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,752 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field filters is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,752 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,753 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,753 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field lists is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,753 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_stat_diff is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,754 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,754 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_numa_event is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,755 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field _watermark is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,755 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field lowmem_reserve is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,755 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,755 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field zone_pgdat is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,756 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field per_cpu_pageset is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,756 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field per_cpu_zonestats is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,756 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,757 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,757 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,758 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_area is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,759 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,759 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field compact_cached_migrate_pfn is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,761 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_4 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,761 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_stat is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,762 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_numa_event is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,764 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,782 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nr_pages is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,783 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mm_stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,784 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,785 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nr_memcgs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,786 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fifo is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,786 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,787 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_node_stat_diff is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,788 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,788 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,789 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field put is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,790 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,790 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prepare is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,791 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field complete is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,792 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,792 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,792 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,793 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field thaw is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,793 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poweroff is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,793 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field restore is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,794 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend_late is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,794 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume_early is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,794 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze_late is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,794 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field thaw_early is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,795 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poweroff_late is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,795 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field restore_early is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,795 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend_noirq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,795 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume_noirq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,796 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze_noirq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,796 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field thaw_noirq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,796 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poweroff_noirq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,797 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field restore_noirq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,797 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field runtime_suspend is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,797 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field runtime_resume is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,797 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field runtime_idle is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,798 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,798 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,799 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field match is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,799 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field uevent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,799 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field probe is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,800 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_state is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,800 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field remove is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,800 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shutdown is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,800 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field online is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,801 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field offline is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,801 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,801 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,801 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field num_vf is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,802 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_configure is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,802 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_cleanup is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,802 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,803 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,803 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field type is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,803 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field compatible is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,804 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field id is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,805 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,809 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mod_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,810 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,810 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field of_match_table is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,811 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field acpi_match_table is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,811 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field probe is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,812 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_state is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,813 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field remove is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,813 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shutdown is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,813 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,814 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,814 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field groups is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,814 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_groups is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,815 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pm is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,815 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field coredump is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,815 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field p is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,816 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field deferred_probe_reason is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,819 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,820 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field uevent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,820 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field devnode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,821 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,822 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,823 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,824 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,825 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,825 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,826 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field wakeirq is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,827 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,830 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,830 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field running is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,830 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_time is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,831 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field function is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,832 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,833 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,834 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain_data is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,835 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field notifier_call is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,835 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,836 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,837 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,837 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,838 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,838 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field qos is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,838 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_dev_pm_qos_request_data\n", + "2025-11-25 22:47:32,839 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,839 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,839 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,840 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,840 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,841 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,842 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field subsys_data is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,842 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_latency_tolerance is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,842 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field qos is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,843 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field start is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,844 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field detach is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,844 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field activate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,844 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,844 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dismiss is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,845 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_performance_state is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,845 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,845 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cpus is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,846 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,846 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,847 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field match is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,847 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field select is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,847 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,847 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field xlate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field activate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field deactivate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field translate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,849 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,849 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field put is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,849 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_is_available is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,849 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_get_match_data is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_dma_supported is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_get_dma_attr is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field property_present is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field property_read_int_array is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field property_read_string_array is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_name_prefix is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_parent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_next_child_node is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_named_child_node is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_reference_args is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graph_get_next_endpoint is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graph_get_remote_endpoint is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graph_get_port_parent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graph_parse_endpoint is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iomap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_get is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,853 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field add_links is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,853 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_startup is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_shutdown is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_enable is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_disable is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_ack is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_mask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_mask_ack is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_unmask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_eoi is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_affinity is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_retrigger is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_type is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_wake is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_bus_lock is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_bus_sync_unlock is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_suspend is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_resume is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_pm_shutdown is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_calc_mask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_print_chip is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_request_resources is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_release_resources is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,858 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_compose_msi_msg is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,858 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_write_msi_msg is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,861 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_get_irqchip_state is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,861 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_irqchip_state is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,861 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_vcpu_affinity is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,862 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ipi_send_single is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,862 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ipi_send_mask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,862 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_nmi_setup is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,862 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_nmi_teardown is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,863 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field handler is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,863 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mask_cache is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,864 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field reg_readl is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field reg_writel is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field chip_types is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,866 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,866 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field gc is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,867 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,867 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prefix is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,867 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_dev_msi_info is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_x86_msi_addr_lo_0\n", + "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_msg_0\n", + "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,869 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,869 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_msg_1\n", + "2025-11-25 22:47:32,869 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,869 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_x86_msi_data_0\n", + "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_msg_2\n", + "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,871 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,871 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field store is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,871 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_pci_msi_desc_0\n", + "2025-11-25 22:47:32,871 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,872 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,872 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_pci_msi_desc_2\n", + "2025-11-25 22:47:32,872 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,872 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,873 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,873 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_domain_cookie\n", + "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_instance_cookie\n", + "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_desc_0\n", + "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field affinity is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sysfs_attrs is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_msi_msg is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,877 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field gc is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pm_dev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,879 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field msi_parent_ops is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,879 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,879 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field revmap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,880 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,880 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_irq_alloc_info_0\n", + "2025-11-25 22:47:32,880 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,880 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,881 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,881 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,881 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field desc is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,881 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_msg is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,882 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,882 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc_pages is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_pages is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc_noncontiguous is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,884 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_noncontiguous is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,887 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mmap is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,887 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_sgtable is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,887 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_page is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,888 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap_page is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,888 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_sg is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,888 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap_sg is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,888 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_resource is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap_resource is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_single_for_cpu is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_single_for_device is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_sg_for_cpu is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_sg_for_device is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cache_sync is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_supported is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_required_mask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field max_mapping_size is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field opt_mapping_size is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_merge_boundary is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,891 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,892 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,892 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,892 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field areas is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,893 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field slots is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,893 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,893 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,894 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,894 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,894 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,895 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field next is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,895 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,895 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field full_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field properties is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field deadprops is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field child is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,897 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sibling is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,897 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,897 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field current_may_mount is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,897 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field grab_current_ns is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field netlink_ns is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field initial_ns is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field drop_ns is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_uevent is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field devnode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field class_release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shutdown_pre is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field namespace is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,900 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_ownership is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,900 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attach_dev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,900 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_dev_pasid is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,901 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_pages is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,901 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap_pages is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,901 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field flush_iotlb_all is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,901 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iotlb_sync_map is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,902 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iotlb_sync is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,902 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cache_invalidate_user is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,902 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iova_to_phys is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,902 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field enforce_cache_coherency is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,903 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field enable_nesting is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,903 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_pgtable_quirks is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,903 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,904 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_dirty_tracking is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,904 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field read_and_clear_dirty is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,904 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field capable is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,905 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field hw_info is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,905 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain_alloc is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,905 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain_alloc_user is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,905 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain_alloc_paging is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field probe_device is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release_device is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field probe_finalize is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_group is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_resv_regions is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,907 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field of_xlate is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,907 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field is_attach_deferred is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,907 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_enable_feat is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,907 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_disable_feat is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,908 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field page_response is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,908 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field def_domain_type is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,908 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field remove_dev_pasid is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,909 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,910 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_iova_magazine_0\n", + "2025-11-25 22:47:32,910 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,910 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,911 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pfns is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,911 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,911 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field loaded is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,912 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prev is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,912 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,912 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cached_node is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,912 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cached32_node is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,913 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rcaches is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,913 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_iommu_dma_cookie_0_0_0\n", + "2025-11-25 22:47:32,914 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,914 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,914 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,914 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_iommu_dma_cookie_0\n", + "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,916 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,916 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fq_domain is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,916 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field handler is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,917 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,917 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_iommu_domain_0\n", + "2025-11-25 22:47:32,917 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ops is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dirty_ops is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field owner is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iova_cookie is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,919 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iopf_handler is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,919 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,919 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iommu_data_release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field default_domain is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field blocking_domain is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,921 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,921 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field handler is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,922 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ids is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,923 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,924 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,924 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,926 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_mask is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,926 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_range_map is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,927 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_parms is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,927 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_io_tlb_mem is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,927 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,928 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field of_node is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,928 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fwnode is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,928 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field class is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,928 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field groups is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,929 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,929 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iommu_group is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,933 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iommu is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,933 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field physical_location is a function pointer, using void pointer\n", + "2025-11-25 22:47:32,935 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bits is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field reclaim_wait is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field kswapd is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field kcompactd is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_4 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field per_cpu_nodestats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_stat is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field memtier is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,606 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,606 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field refaults is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,606 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pgdat is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,607 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,607 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_prev is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,607 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,607 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_local is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,608 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_pending is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,608 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,608 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,609 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,609 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unit is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,609 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field lru_zone_size is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,609 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shrinker_info is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,610 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,610 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field memcg is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,611 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,611 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,611 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vmstats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field memory_events is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field memory_events_local is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_4 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field objcg is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field orig_objcg is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_5 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field move_lock_task is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vmstats_percpu is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,614 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cgwb_frn is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,614 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_6 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,614 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nodeinfo is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,615 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_obj_cgroup_0\n", + "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_bpf_map_0\n", + "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field elem_count is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,619 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,621 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_bpf_jit_poke_descriptor_0\n", + "2025-11-25 22:47:33,621 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,622 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,623 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,624 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,624 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field test_run is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_init is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_uninit is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_open is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_stop is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_start_xmit is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_features_check is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_select_queue is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_change_rx_flags is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_rx_mode is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_mac_address is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_validate_addr is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_do_ioctl is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_eth_ioctl is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_siocbond is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_siocwandev is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_siocdevprivate is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_config is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_change_mtu is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_neigh_setup is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_tx_timeout is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_stats64 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_has_offload_stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_offload_stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_vlan_rx_add_vid is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_vlan_rx_kill_vid is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_poll_controller is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_netpoll_setup is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_netpoll_cleanup is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_mac is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,632 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_vlan is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_rate is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_spoofchk is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_trust is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_vf_config is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_link_state is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_vf_stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_port is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_vf_port is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_vf_guid is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_guid is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_rss_query_en is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_setup_tc is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_enable is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_disable is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_ddp_setup is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_ddp_done is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_ddp_target is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_get_hbainfo is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_get_wwn is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_rx_flow_steer is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_add_slave is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_del_slave is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_xmit_slave is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_sk_get_lower_dev is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fix_features is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_features is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_neigh_construct is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_neigh_destroy is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_add is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_del is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_del_bulk is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_dump is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_get is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_add is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_del is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_del_bulk is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_dump is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_get is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_bridge_setlink is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_bridge_getlink is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_bridge_dellink is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_change_carrier is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_phys_port_id is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_port_parent_id is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_phys_port_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_dfwd_add_station is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_dfwd_del_station is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_tx_maxrate is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_iflink is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fill_metadata_dst is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_rx_headroom is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_bpf is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_xdp_xmit is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_xdp_get_xmit_slave is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_xsk_wakeup is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_tunnel_ctl is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_peer_dev is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fill_forward_path is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_tstamp is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_hwtstamp_get is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_hwtstamp_set is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field create is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parse is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cache is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cache_update is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field validate is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parse_protocol is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field select_queue is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graft is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field leaf is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field qlen_notify is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field find is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field change is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field delete is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field walk is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field tcf_block is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bind_tcf is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unbind_tcf is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dump is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dump_stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field id is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field enqueue is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dequeue is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field peek is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field reset is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field destroy is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field change is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attach is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field change_tx_queue_len is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field change_real_num_tx is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dump is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dump_stats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ingress_block_set is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field egress_block_set is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ingress_block_get is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field egress_block_get is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field owner is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field data is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cpu_bstats is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sk_buff_0_0_0\n", + "2025-11-25 22:47:33,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sk_buff_0\n", + "2025-11-25 22:47:33,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sock_common_0\n", + "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sock_common_1\n", + "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sock_common_2\n", + "2025-11-25 22:47:33,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sock_common_3\n", + "2025-11-25 22:47:33,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field slab_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rtx_syn_ack is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,661 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field send_ack is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field send_reset is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field destructor is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field syn_ack_timeout is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field twsk_slab_name is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field twsk_unique is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field twsk_destructor is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,665 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ht is a function pointer, using void pointer\n", + "2025-11-25 22:47:33,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_proto_h\n", + "2025-11-25 22:47:33,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "2025-11-25 22:47:33,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", + "IOPub message rate exceeded.\n", + "The Jupyter server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--ServerApp.iopub_msg_rate_limit`.\n", + "\n", + "Current values:\n", + "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", + "ServerApp.rate_limit_window=3.0 (secs)\n", + "\n" + ] + } + ], + "source": [ + "from vmlinux import struct_request, struct_pt_regs\n", + "from pythonbpf import bpf, section, bpfglobal, compile_to_ir, compile, map, BPF\n", + "from pythonbpf.helper import ktime\n", + "from pythonbpf.maps import HashMap\n", + "import logging\n", + "from ctypes import c_int64, c_uint64, c_int32\n", + "\n", + "REQ_WRITE = 1\n", + "\n", + "@bpf\n", + "@map\n", + "def start() -> HashMap:\n", + " return HashMap(key=c_uint64, value=c_uint64, max_entries=10240)\n", + "\n", + "@bpf\n", + "@section(\"kprobe/blk_mq_end_request\")\n", + "def trace_completion(ctx: struct_pt_regs) -> c_int64:\n", + " # Get request pointer from first argument\n", + " req_ptr = ctx.di\n", + " req = struct_request(ctx.di)\n", + " # Print: data_len, cmd_flags, latency_us\n", + " data_len = req.__data_len\n", + " cmd_flags = req.cmd_flags\n", + " # Lookup start timestamp\n", + " req_tsp = start.lookup(req_ptr)\n", + " if req_tsp:\n", + " # Calculate delta in nanoseconds\n", + " delta = ktime() - req_tsp\n", + "\n", + " # Convert to microseconds for printing\n", + " delta_us = delta // 1000\n", + "\n", + " print(f\"{data_len} {cmd_flags:x} {delta_us}\\n\")\n", + "\n", + " # Delete the entry\n", + " start.delete(req_ptr)\n", + "\n", + " return c_int64(0)\n", + "\n", + "@bpf\n", + "@section(\"kprobe/blk_mq_start_request\")\n", + "def trace_start(ctx1: struct_pt_regs) -> c_int32:\n", + " req = ctx1.di\n", + " ts = ktime()\n", + " start.update(req, ts)\n", + " return c_int32(0)\n", + "\n", + "@bpf\n", + "@bpfglobal\n", + "def LICENSE() -> str:\n", + " return \"GPL\"\n", + "\n", + "b = BPF()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "97040f73-98e0-4993-94c6-125d1b42d931", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'trace_completion': ,\n", + " 'trace_start': }" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "b.load()\n", + "b.attach_all()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "b1bd4f51-fa25-42e1-877c-e48a2605189f", + "metadata": {}, + "outputs": [], + "source": [ + "from pythonbpf import trace_pipe" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "96b4b59b-b0db-4952-9534-7a714f685089", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " python-313731 [005] d.h21 204630.379933: bpf_trace_printk: 0 262146 1796\n", + "\n", + "\n", + " -0 [005] d.h31 204630.380896: bpf_trace_printk: 4096 169985 657\n", + "\n", + "\n", + " chrome-309323 [007] d.h21 204630.381853: bpf_trace_printk: 0 262146 625\n", + "\n", + "\n", + " chrome-309323 [007] d.h31 204630.381857: bpf_trace_printk: 0 2049 668\n", + "\n", + "\n", + " chrome-309323 [007] d.h31 204630.382567: bpf_trace_printk: 0 262146 618\n", + "\n", + "\n", + " chrome-309323 [007] d.h41 204630.382569: bpf_trace_printk: 0 2049 645\n", + "\n", + "\n", + " -0 [008] d.h31 204630.384378: bpf_trace_printk: 0 262146 651\n", + "\n", + "\n", + " -0 [008] d.h31 204630.385009: bpf_trace_printk: 4096 169985 617\n", + "\n", + "\n", + " chrome-309323 [007] d.h21 204630.385665: bpf_trace_printk: 0 262146 576\n", + "\n", + "\n", + " chrome-309323 [007] d.h31 204630.385667: bpf_trace_printk: 0 2049 603\n", + "\n", + "\n", + " chrome-309323 [007] d.h21 204630.386397: bpf_trace_printk: 0 262146 644\n", + "\n", + "\n", + " chrome-309323 [007] d.h31 204630.386399: bpf_trace_printk: 0 2049 668\n", + "\n", + "\n", + " -0 [008] d.h31 204630.387867: bpf_trace_printk: 0 262146 655\n", + "\n", + "\n", + " -0 [008] d.h31 204630.388653: bpf_trace_printk: 4096 169985 625\n", + "\n", + "\n", + " chrome-309323 [007] d.h21 204630.389468: bpf_trace_printk: 0 262146 621\n", + "\n", + "\n", + " chrome-309323 [007] d.h31 204630.389469: bpf_trace_printk: 0 2049 647\n", + "\n", + "\n", + " chrome-309323 [007] d.h21 204630.390226: bpf_trace_printk: 0 262146 623\n", + "\n", + "\n", + " chrome-309323 [007] d.h31 204630.390227: bpf_trace_printk: 0 2049 651\n", + "\n", + "\n", + " -0 [014] d.h31 204632.092137: bpf_trace_printk: 0 262146 882\n", + "\n", + "\n", + " WebRTC_W_and_N-301480 [014] d.h21 204632.094329: bpf_trace_printk: 0 262146 2097\n", + "\n", + "\n", + " WebRTC_W_and_N-301480 [014] d.h31 204632.094336: bpf_trace_printk: 0 2049 2146\n", + "\n", + "\n", + " -0 [014] d.h31 204632.095107: bpf_trace_printk: 0 262146 693\n", + "\n", + "\n", + " -0 [014] d.h41 204632.095113: bpf_trace_printk: 0 2049 739\n", + "\n", + "\n", + " -0 [005] d.h31 204632.096109: bpf_trace_printk: 0 262146 754\n", + "\n", + "\n", + " -0 [005] d.h31 204632.098648: bpf_trace_printk: 4096 169985 2455\n", + "\n", + "\n", + " -0 [005] d.h31 204632.099476: bpf_trace_printk: 0 262146 579\n", + "\n", + "\n", + " -0 [005] d.h31 204632.099912: bpf_trace_printk: 4096 169985 383\n", + "\n", + "\n", + " -0 [005] d.h31 204632.100516: bpf_trace_printk: 0 262146 407\n", + "\n", + "\n", + " -0 [005] d.h31 204632.100983: bpf_trace_printk: 4096 169985 383\n", + "\n", + "\n", + " -0 [014] dNh31 204632.101532: bpf_trace_printk: 0 262146 398\n", + "\n", + "\n", + " -0 [014] dNh41 204632.101536: bpf_trace_printk: 0 2049 440\n", + "\n", + "\n", + " -0 [014] d.h31 204632.103801: bpf_trace_printk: 0 262146 2121\n", + "\n", + "\n", + " -0 [001] d.h31 204632.103802: bpf_trace_printk: 0 262146 579\n", + "\n", + "\n", + " -0 [001] d.h41 204632.103818: bpf_trace_printk: 0 2049 8133\n", + "\n", + "\n", + " -0 [014] d.h41 204632.103818: bpf_trace_printk: 0 2049 2201\n", + "\n", + "\n", + " -0 [014] d.h31 204632.104286: bpf_trace_printk: 0 262146 407\n", + "\n", + "\n", + " -0 [014] d.h41 204632.104289: bpf_trace_printk: 0 2049 435\n", + "\n", + "\n", + " DefaultDispatch-313174 [017] d.h21 204632.104677: bpf_trace_printk: 0 262146 511\n", + "\n", + "\n", + " -0 [007] d.h31 204632.105153: bpf_trace_printk: 0 262146 756\n", + "\n", + "\n", + " -0 [007] d.h41 204632.105155: bpf_trace_printk: 0 2049 817\n", + "\n", + "\n", + " -0 [017] d.h31 204632.105578: bpf_trace_printk: 4096 169985 876\n", + "\n", + "\n", + " -0 [017] d.h31 204632.106130: bpf_trace_printk: 0 262146 429\n", + "\n", + "\n", + " -0 [017] d.h31 204632.106676: bpf_trace_printk: 4096 169985 517\n", + "\n", + "\n", + " -0 [012] d.h31 204633.062006: bpf_trace_printk: 0 262146 2093\n", + "\n", + "\n", + " -0 [012] d.h31 204633.062689: bpf_trace_printk: 4096 169985 481\n", + "\n", + "\n", + " -0 [008] d.h31 204633.063544: bpf_trace_printk: 0 262146 447\n", + "\n", + "\n", + " -0 [008] d.h41 204633.063560: bpf_trace_printk: 0 2049 578\n", + "\n", + "\n", + " -0 [008] d.h31 204633.064221: bpf_trace_printk: 0 262146 424\n", + "\n", + "\n", + " -0 [008] d.h41 204633.064222: bpf_trace_printk: 0 2049 458\n", + "\n", + "\n", + " -0 [012] d.h31 204633.065117: bpf_trace_printk: 0 262146 437\n", + "\n", + "\n", + " -0 [012] d.h31 204633.065779: bpf_trace_printk: 4096 169985 486\n", + "\n", + "\n", + " -0 [012] d.h31 204634.170064: bpf_trace_printk: 0 262146 2141\n", + "\n", + "\n", + " -0 [012] d.h31 204634.170809: bpf_trace_printk: 4096 169985 646\n", + "\n", + "\n", + " -0 [005] d.h31 204639.221416: bpf_trace_printk: 0 262146 934\n", + "\n", + "\n", + " -0 [005] d.h31 204639.222013: bpf_trace_printk: 4096 169985 558\n", + "\n", + "\n", + " -0 [005] d.h31 204641.899152: bpf_trace_printk: 0 262146 959\n", + "\n", + "\n", + " -0 [005] d.h31 204641.899832: bpf_trace_printk: 4096 169985 551\n", + "\n", + "\n", + " -0 [005] d.h31 204644.109882: bpf_trace_printk: 0 262146 2270\n", + "\n", + "\n", + " -0 [005] d.h31 204644.110651: bpf_trace_printk: 4096 169985 651\n", + "\n", + "\n", + " -0 [003] d.h31 204644.111707: bpf_trace_printk: 0 262146 682\n", + "\n", + "\n", + " -0 [003] d.h41 204644.111722: bpf_trace_printk: 0 2049 849\n", + "\n", + "\n", + " -0 [015] d.h31 204644.112611: bpf_trace_printk: 0 262146 748\n", + "\n", + "\n", + " -0 [015] d.h41 204644.112621: bpf_trace_printk: 0 2049 840\n", + "\n", + "\n", + " -0 [005] d.h31 204644.119855: bpf_trace_printk: 0 262146 1888\n", + "\n", + "\n", + " -0 [005] d.h31 204644.120517: bpf_trace_printk: 4096 169985 524\n", + "\n", + "\n", + " -0 [005] d.h31 204645.156460: bpf_trace_printk: 0 262146 1726\n", + "\n", + "\n", + " -0 [005] d.h31 204645.157061: bpf_trace_printk: 4096 169985 560\n", + "\n", + "\n", + " -0 [016] d.h31 204645.158031: bpf_trace_printk: 0 262146 589\n", + "\n", + "\n", + " -0 [016] d.h41 204645.158035: bpf_trace_printk: 0 2049 828\n", + "\n", + "\n", + " -0 [016] d.h31 204645.160579: bpf_trace_printk: 0 262146 2238\n", + "\n", + "\n", + " -0 [016] d.h41 204645.160610: bpf_trace_printk: 0 2049 2412\n", + "\n", + "\n", + " -0 [005] d.h31 204645.161486: bpf_trace_printk: 0 262146 544\n", + "\n", + "\n", + " -0 [005] d.h31 204645.162099: bpf_trace_printk: 4096 169985 519\n", + "\n", + "\n", + " -0 [017] d.h31 204646.854800: bpf_trace_printk: 0 262146 1750\n", + "\n", + "\n", + " -0 [017] d.h31 204646.855556: bpf_trace_printk: 4096 169985 602\n", + "\n", + "\n", + " -0 [018] d.h31 204646.876437: bpf_trace_printk: 0 262146 156\n", + "\n", + "\n", + " -0 [018] d.h41 204646.876442: bpf_trace_printk: 0 2049 25247\n", + "\n", + "\n", + " -0 [013] d.h31 204646.877219: bpf_trace_printk: 0 262146 651\n", + "\n", + "\n", + " -0 [013] d.h31 204646.878152: bpf_trace_printk: 0 262146 779\n", + "\n", + "\n", + " -0 [013] d.h41 204646.878157: bpf_trace_printk: 0 2049 828\n", + "\n", + "\n", + " -0 [001] d.h31 204646.879175: bpf_trace_printk: 0 262146 674\n", + "\n", + "\n", + " -0 [001] d.h31 204646.879836: bpf_trace_printk: 4096 169985 627\n", + "\n", + "\n", + " -0 [001] d.h31 204652.233613: bpf_trace_printk: 0 262146 1653\n", + "\n", + "\n", + " -0 [001] d.h31 204652.234405: bpf_trace_printk: 4096 169985 692\n", + "\n", + "\n", + " -0 [001] d.h31 204657.521565: bpf_trace_printk: 0 262146 2174\n", + "\n", + "\n", + " -0 [001] d.h31 204657.522485: bpf_trace_printk: 4096 169985 660\n", + "\n", + "\n", + " -0 [001] d.h31 204659.657639: bpf_trace_printk: 0 262146 1486\n", + "\n", + "\n", + " -0 [001] d.h31 204659.658268: bpf_trace_printk: 4096 169985 559\n", + "\n", + "\n", + " -0 [005] d.h31 204659.659313: bpf_trace_printk: 0 262146 692\n", + "\n", + "\n", + " -0 [005] d.h41 204659.659332: bpf_trace_printk: 0 2049 860\n", + "\n", + "\n", + " -0 [005] d.h31 204659.660204: bpf_trace_printk: 0 262146 541\n", + "\n", + "\n", + " -0 [005] d.h41 204659.660211: bpf_trace_printk: 0 2049 626\n", + "\n", + "\n", + " -0 [001] d.h31 204659.661396: bpf_trace_printk: 0 262146 633\n", + "\n", + "\n", + " -0 [001] d.h31 204659.662009: bpf_trace_printk: 4096 169985 558\n", + "\n", + "\n", + " -0 [001] d.h31 204663.173270: bpf_trace_printk: 0 262146 2114\n", + "\n", + "\n", + " -0 [001] d.h31 204663.174069: bpf_trace_printk: 4096 169985 638\n", + "\n", + "\n", + " -0 [012] d.h31 204663.175273: bpf_trace_printk: 0 262146 683\n", + "\n", + "\n", + " -0 [012] d.h41 204663.175299: bpf_trace_printk: 0 2049 819\n", + "\n", + "\n", + " -0 [012] d.h31 204663.176090: bpf_trace_printk: 0 262146 627\n", + "\n", + "\n", + " -0 [012] d.h41 204663.176093: bpf_trace_printk: 0 2049 689\n", + "\n", + "\n", + " -0 [001] d.h31 204663.177187: bpf_trace_printk: 0 262146 695\n", + "\n", + "\n", + " -0 [001] d.h31 204663.177906: bpf_trace_printk: 4096 169985 655\n", + "\n", + "\n", + " ksoftirqd/12-54 [012] ..s21 204665.549180: bpf_trace_printk: 1024 2048 26\n", + "\n", + "\n", + " ksoftirqd/12-54 [012] ..s21 204665.549213: bpf_trace_printk: 6144 2048 7\n", + "\n", + "\n", + " ksoftirqd/12-54 [012] ..s21 204665.550284: bpf_trace_printk: 120832 2048 1027\n", + "\n", + "\n", + " ksoftirqd/13-60 [013] ..s21 204665.550710: bpf_trace_printk: 117760 2048 34\n", + "\n", + "\n", + " ksoftirqd/13-60 [013] ..s21 204665.552542: bpf_trace_printk: 1024 2048 116\n", + "\n", + "\n", + " ksoftirqd/13-60 [013] ..s21 204665.552570: bpf_trace_printk: 5120 2048 11\n", + "\n", + "\n", + " -0 [001] d.h31 204667.794434: bpf_trace_printk: 0 262146 2105\n", + "\n", + "\n", + " -0 [001] d.h31 204667.795234: bpf_trace_printk: 4096 169985 634\n", + "\n", + "\n", + " C2 CompilerThre-6842 [001] d.h21 204672.857475: bpf_trace_printk: 0 262146 2695\n", + "\n", + "\n", + " C2 CompilerThre-6842 [001] d.h21 204672.859924: bpf_trace_printk: 4096 169985 2422\n", + "\n", + "\n", + " -0 [001] d.h31 204680.014943: bpf_trace_printk: 0 262146 2391\n", + "\n", + "\n", + " -0 [001] d.h31 204680.017089: bpf_trace_printk: 4096 169985 1860\n", + "\n", + "\n", + " -0 [001] d.h31 204681.190068: bpf_trace_printk: 0 262146 734\n", + "\n", + "\n", + " -0 [001] d.h31 204681.191001: bpf_trace_printk: 4096 169985 675\n", + "\n", + "\n", + " -0 [014] d.h31 204681.192046: bpf_trace_printk: 0 262146 683\n", + "\n", + "\n", + " -0 [014] d.h41 204681.192072: bpf_trace_printk: 0 2049 846\n", + "\n", + "\n", + " -0 [014] d.h31 204681.194448: bpf_trace_printk: 0 262146 1916\n", + "\n", + "\n", + " -0 [014] d.h41 204681.194477: bpf_trace_printk: 0 2049 2073\n", + "\n", + "\n", + " -0 [001] d.h31 204681.195637: bpf_trace_printk: 0 262146 717\n", + "\n", + "\n", + " -0 [001] d.h31 204681.196531: bpf_trace_printk: 4096 169985 639\n", + "\n", + "\n", + " -0 [001] d.h31 204686.817101: bpf_trace_printk: 0 262146 783\n", + "\n", + "\n", + " -0 [001] d.h31 204686.819532: bpf_trace_printk: 4096 169985 2291\n", + "\n", + "\n", + " -0 [017] d.h31 204686.846594: bpf_trace_printk: 0 262146 151\n", + "\n", + "\n", + " -0 [017] d.h41 204686.846599: bpf_trace_printk: 0 2049 4275215\n", + "\n", + "\n", + " -0 [017] d.h31 204686.847147: bpf_trace_printk: 0 262146 423\n", + "\n", + "\n", + " -0 [017] d.h41 204686.847154: bpf_trace_printk: 0 2049 519\n", + "\n", + "\n", + " -0 [017] d.h31 204686.847854: bpf_trace_printk: 0 262146 507\n", + "\n", + "\n", + " -0 [017] d.h41 204686.847879: bpf_trace_printk: 0 2049 632\n", + "\n", + "\n", + " -0 [001] d.h31 204686.848958: bpf_trace_printk: 0 262146 478\n", + "\n", + "\n", + " -0 [001] d.h31 204686.849609: bpf_trace_printk: 4096 169985 418\n", + "\n", + "\n", + " -0 [001] d.h31 204686.852532: bpf_trace_printk: 0 262146 387\n", + "\n", + "\n", + " -0 [001] d.h31 204686.853087: bpf_trace_printk: 4096 169985 480\n", + "\n", + "\n", + " -0 [003] d.h31 204686.853622: bpf_trace_printk: 0 262146 420\n", + "\n", + "\n", + " -0 [003] d.h41 204686.853624: bpf_trace_printk: 0 2049 453\n", + "\n", + "\n", + " -0 [003] d.h31 204686.854201: bpf_trace_printk: 0 262146 453\n", + "\n", + "\n", + " -0 [003] d.h41 204686.854210: bpf_trace_printk: 0 2049 555\n", + "\n", + "\n", + " -0 [001] d.h31 204686.854925: bpf_trace_printk: 0 262146 385\n", + "\n", + "\n", + " -0 [001] d.h31 204686.855380: bpf_trace_printk: 4096 169985 360\n", + "\n", + "\n", + " -0 [001] d.h31 204692.235433: bpf_trace_printk: 0 262146 2357\n", + "\n", + "\n", + " -0 [001] d.h31 204692.236342: bpf_trace_printk: 4096 169985 679\n", + "\n", + "\n", + " -0 [001] d.h31 204692.764994: bpf_trace_printk: 0 262146 2030\n", + "\n", + "\n", + " -0 [001] d.h31 204692.765798: bpf_trace_printk: 4096 169985 575\n", + "\n", + "\n", + " -0 [001] d.h31 204692.767170: bpf_trace_printk: 0 262146 639\n", + "\n", + "\n", + " -0 [001] d.h31 204692.767792: bpf_trace_printk: 4096 169985 575\n", + "\n", + "\n", + " -0 [001] d.h31 204692.769333: bpf_trace_printk: 0 262146 785\n", + "\n", + "\n", + " -0 [001] d.h31 204692.769987: bpf_trace_printk: 4096 169985 600\n", + "\n", + "\n", + " -0 [001] d.h31 204692.772544: bpf_trace_printk: 0 262146 1935\n", + "\n", + "\n", + " -0 [001] d.h31 204692.773143: bpf_trace_printk: 4096 169985 561\n", + "\n", + "\n", + " -0 [001] d.h31 204692.774539: bpf_trace_printk: 0 262146 667\n", + "\n", + "\n", + " -0 [001] d.h31 204692.775164: bpf_trace_printk: 4096 169985 615\n", + "\n", + "\n", + " -0 [001] d.h31 204692.777342: bpf_trace_printk: 0 262146 2111\n", + "\n", + "\n", + " -0 [001] d.h31 204692.777994: bpf_trace_printk: 4096 169985 618\n", + "\n", + "\n", + " -0 [014] d.H31 204692.779553: bpf_trace_printk: 0 262146 735\n", + "\n", + "\n", + " -0 [014] d.h31 204692.780324: bpf_trace_printk: 4096 169985 722\n", + "\n", + "\n", + " -0 [014] d.h31 204693.374292: bpf_trace_printk: 0 262146 1039\n", + "\n", + "\n", + " -0 [014] d.h31 204693.375058: bpf_trace_printk: 4096 169985 695\n", + "\n", + "\n", + " -0 [014] d.h31 204693.375936: bpf_trace_printk: 0 262146 677\n", + "\n", + "\n", + " -0 [014] d.h41 204693.375938: bpf_trace_printk: 0 2049 786\n", + "\n", + "\n", + " -0 [014] d.h31 204693.376951: bpf_trace_printk: 0 262146 706\n", + "\n", + "\n", + " -0 [014] d.h41 204693.376955: bpf_trace_printk: 0 2049 837\n", + "\n", + "\n", + " -0 [014] d.h31 204693.379376: bpf_trace_printk: 0 262146 2143\n", + "\n", + "\n", + " -0 [014] d.h31 204693.380254: bpf_trace_printk: 4096 169985 771\n", + "\n", + "\n", + " -0 [005] d.h31 204698.859899: bpf_trace_printk: 0 262146 579\n", + "\n", + "\n", + " -0 [005] d.h31 204698.860426: bpf_trace_printk: 4096 169985 498\n", + "\n", + "\n", + " -0 [005] d.h31 204704.078938: bpf_trace_printk: 0 262146 2058\n", + "\n", + "\n", + " -0 [005] d.h31 204704.079625: bpf_trace_printk: 4096 169985 547\n", + "\n", + "\n", + " -0 [005] d.h31 204709.223407: bpf_trace_printk: 0 262146 1736\n", + "\n", + "\n", + " -0 [005] dNh31 204709.224089: bpf_trace_printk: 4096 169985 649\n", + "\n", + "\n", + " -0 [005] d.h31 204713.830976: bpf_trace_printk: 0 262146 1970\n", + "\n", + "\n", + " -0 [005] dNh31 204713.831712: bpf_trace_printk: 4096 169985 591\n", + "\n", + "\n", + " -0 [015] d.h31 204713.832741: bpf_trace_printk: 0 262146 703\n", + "\n", + "\n", + " -0 [015] d.h41 204713.832768: bpf_trace_printk: 0 2049 851\n", + "\n", + "\n", + " -0 [015] d.h31 204713.833903: bpf_trace_printk: 0 262146 765\n", + "\n", + "\n", + " -0 [015] d.h41 204713.833919: bpf_trace_printk: 0 2049 921\n", + "\n", + "\n", + " -0 [006] d.h31 204713.834982: bpf_trace_printk: 0 262146 635\n", + "\n", + "\n", + " -0 [006] d.h31 204713.835764: bpf_trace_printk: 4096 169985 617\n", + "\n", + "\n", + "Tracing stopped.\n", + "None\n" + ] + } + ], + "source": [ + "trace_pipe()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/BCC-Examples/disksnoop.py b/BCC-Examples/disksnoop.py index d758c0e..4ef4d24 100644 --- a/BCC-Examples/disksnoop.py +++ b/BCC-Examples/disksnoop.py @@ -3,16 +3,18 @@ from pythonbpf.helper import ktime from pythonbpf.maps import HashMap import logging -from ctypes import c_int64, c_uint64, c_uint32, c_int32 +from ctypes import c_int64, c_uint64, c_int32 # Constants REQ_WRITE = 1 # from include/linux/blk_types.h + @bpf @map def start() -> HashMap: return HashMap(key=c_uint64, value=c_uint64, max_entries=10240) + @bpf @section("kprobe/blk_mq_end_request") def trace_completion(ctx: struct_pt_regs) -> c_int64: @@ -38,6 +40,7 @@ def trace_completion(ctx: struct_pt_regs) -> c_int64: return c_int64(0) + @bpf @section("kprobe/blk_mq_start_request") def trace_start(ctx1: struct_pt_regs) -> c_int32: @@ -46,6 +49,7 @@ def trace_start(ctx1: struct_pt_regs) -> c_int32: start.update(req, ts) return c_int32(0) + @bpf @bpfglobal def LICENSE() -> str: diff --git a/tests/c-form/disksnoop.bpf.c b/tests/c-form/disksnoop.bpf.c index 79582f7..ca6b3df 100644 --- a/tests/c-form/disksnoop.bpf.c +++ b/tests/c-form/disksnoop.bpf.c @@ -8,59 +8,59 @@ char LICENSE[] SEC("license") = "GPL"; struct { - __uint(type, BPF_MAP_TYPE_HASH); - __type(key, __u64); - __type(value, __u64); - __uint(max_entries, 10240); + __uint(type, BPF_MAP_TYPE_HASH); + __type(key, __u64); + __type(value, __u64); + __uint(max_entries, 10240); } start_map SEC(".maps"); /* kprobe: record start timestamp keyed by request pointer */ SEC("kprobe/blk_mq_start_request") int trace_start(struct pt_regs *ctx) { - /* request * is first arg */ - __u64 reqp = (__u64)(ctx->di); - __u64 ts = bpf_ktime_get_ns(); + /* request * is first arg */ + __u64 reqp = (__u64)(ctx->di); + __u64 ts = bpf_ktime_get_ns(); - bpf_map_update_elem(&start_map, &reqp, &ts, BPF_ANY); + bpf_map_update_elem(&start_map, &reqp, &ts, BPF_ANY); -// /* optional debug: - bpf_printk("start: req=%llu ts=%llu\n", reqp, ts); -// */ - return 0; +// /* optional debug: + bpf_printk("start: req=%llu ts=%llu\n", reqp, ts); +// */ + return 0; } /* completion: compute latency and print data_len, cmd_flags, latency_us */ SEC("kprobe/blk_mq_end_request") int trace_completion(struct pt_regs *ctx) { - __u64 reqp = (__u64)(ctx->di); - __u64 *tsp; - __u64 now_ns; - __u64 delta_ns; - __u64 delta_us = 0; + __u64 reqp = (__u64)(ctx->di); + __u64 *tsp; + __u64 now_ns; + __u64 delta_ns; + __u64 delta_us = 0; bpf_printk("%lld", reqp); - tsp = bpf_map_lookup_elem(&start_map, &reqp); - if (!tsp) - return 0; + tsp = bpf_map_lookup_elem(&start_map, &reqp); + if (!tsp) + return 0; - now_ns = bpf_ktime_get_ns(); - delta_ns = now_ns - *tsp; - delta_us = delta_ns / 1000; + now_ns = bpf_ktime_get_ns(); + delta_ns = now_ns - *tsp; + delta_us = delta_ns / 1000; - /* read request fields using CO-RE; needs vmlinux.h/BTF */ - __u32 data_len = 0; - __u32 cmd_flags = 0; + /* read request fields using CO-RE; needs vmlinux.h/BTF */ + __u32 data_len = 0; + __u32 cmd_flags = 0; - /* __data_len is usually a 32/64-bit; use CORE read to be safe */ - data_len = ( __u32 ) BPF_CORE_READ((struct request *)reqp, __data_len); - cmd_flags = ( __u32 ) BPF_CORE_READ((struct request *)reqp, cmd_flags); + /* __data_len is usually a 32/64-bit; use CORE read to be safe */ + data_len = ( __u32 ) BPF_CORE_READ((struct request *)reqp, __data_len); + cmd_flags = ( __u32 ) BPF_CORE_READ((struct request *)reqp, cmd_flags); - /* print: " " */ - bpf_printk("%u %x %llu\n", data_len, cmd_flags, delta_us); + /* print: " " */ + bpf_printk("%u %x %llu\n", data_len, cmd_flags, delta_us); - /* remove from map */ - bpf_map_delete_elem(&start_map, &reqp); + /* remove from map */ + bpf_map_delete_elem(&start_map, &reqp); - return 0; + return 0; } From 4905649700da0473afccba17ae6213aa6c732e51 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Wed, 26 Nov 2025 14:18:40 +0530 Subject: [PATCH 03/10] feat:non struct field values can be cast --- BCC-Examples/disksnoop.ipynb | 8 ++- pythonbpf/expr/expr_pass.py | 16 +++-- pythonbpf/type_deducer.py | 2 + .../vmlinux_parser/vmlinux_exports_handler.py | 15 +++- tests/c-form/xdp_test.bpf.c | 72 +++++++++++++++++++ 5 files changed, 103 insertions(+), 10 deletions(-) create mode 100644 tests/c-form/xdp_test.bpf.c diff --git a/BCC-Examples/disksnoop.ipynb b/BCC-Examples/disksnoop.ipynb index 1f81d01..2265a07 100644 --- a/BCC-Examples/disksnoop.ipynb +++ b/BCC-Examples/disksnoop.ipynb @@ -3025,19 +3025,20 @@ ], "source": [ "from vmlinux import struct_request, struct_pt_regs\n", - "from pythonbpf import bpf, section, bpfglobal, compile_to_ir, compile, map, BPF\n", + "from pythonbpf import bpf, section, bpfglobal, map, BPF\n", "from pythonbpf.helper import ktime\n", "from pythonbpf.maps import HashMap\n", - "import logging\n", "from ctypes import c_int64, c_uint64, c_int32\n", "\n", "REQ_WRITE = 1\n", "\n", + "\n", "@bpf\n", "@map\n", "def start() -> HashMap:\n", " return HashMap(key=c_uint64, value=c_uint64, max_entries=10240)\n", "\n", + "\n", "@bpf\n", "@section(\"kprobe/blk_mq_end_request\")\n", "def trace_completion(ctx: struct_pt_regs) -> c_int64:\n", @@ -3063,6 +3064,7 @@ "\n", " return c_int64(0)\n", "\n", + "\n", "@bpf\n", "@section(\"kprobe/blk_mq_start_request\")\n", "def trace_start(ctx1: struct_pt_regs) -> c_int32:\n", @@ -3071,11 +3073,13 @@ " start.update(req, ts)\n", " return c_int32(0)\n", "\n", + "\n", "@bpf\n", "@bpfglobal\n", "def LICENSE() -> str:\n", " return \"GPL\"\n", "\n", + "\n", "b = BPF()" ] }, diff --git a/pythonbpf/expr/expr_pass.py b/pythonbpf/expr/expr_pass.py index 489de9f..abafb86 100644 --- a/pythonbpf/expr/expr_pass.py +++ b/pythonbpf/expr/expr_pass.py @@ -666,13 +666,17 @@ def _handle_vmlinux_cast( # Cast the integer/value to a pointer to the struct # If arg_val is an integer type, we need to inttoptr it ptr_type = ir.PointerType() - # TODO: add a integer check here later - if ctypes_to_ir(arg_type.type.__name__): - # Cast integer to pointer - casted_ptr = builder.inttoptr(arg_val, ptr_type) + # TODO: add a field value type check here + print(arg_type) + if isinstance(arg_type, Field): + if ctypes_to_ir(arg_type.type.__name__): + # Cast integer to pointer + casted_ptr = builder.inttoptr(arg_val, ptr_type) + else: + logger.error(f"Unsupported type for vmlinux cast: {arg_type}") + return None else: - logger.error(f"Unsupported type for vmlinux cast: {arg_type}") - return None + casted_ptr = builder.inttoptr(arg_val, ptr_type) return casted_ptr, vmlinux_struct_type diff --git a/pythonbpf/type_deducer.py b/pythonbpf/type_deducer.py index fd589ae..734b80b 100644 --- a/pythonbpf/type_deducer.py +++ b/pythonbpf/type_deducer.py @@ -18,6 +18,8 @@ "c_longlong": ir.IntType(64), "c_uint": ir.IntType(32), "c_int": ir.IntType(32), + "c_ushort": ir.IntType(16), + "c_short": ir.IntType(16), # Not so sure about this one "str": ir.PointerType(ir.IntType(8)), } diff --git a/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py b/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py index c26cac9..e5bc153 100644 --- a/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py +++ b/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py @@ -121,7 +121,12 @@ def handle_vmlinux_struct_field( # Use bpf_probe_read_kernel for non-context struct field access field_value = self.load_struct_field( - builder, struct_ptr, globvar_ir, field_data, struct_name + builder, + struct_ptr, + globvar_ir, + field_data, + struct_name, + local_sym_tab, ) # Return field value and field type return field_value, field_data @@ -130,7 +135,12 @@ def handle_vmlinux_struct_field( @staticmethod def load_struct_field( - builder, struct_ptr_int, offset_global, field_data, struct_name=None + builder, + struct_ptr_int, + offset_global, + field_data, + struct_name=None, + local_sym_tab=None, ): """ Generate LLVM IR to load a field from a regular (non-context) struct using bpf_probe_read_kernel. @@ -204,6 +214,7 @@ def load_struct_field( logger.warning("Complex vmlinux field type, using default 64 bits") # Allocate local storage for the field value + # TODO: CRITICAL BUG. alloca cannot be used anywhere other than the basic block local_storage = builder.alloca(ir.IntType(int_width)) local_storage_i8_ptr = builder.bitcast(local_storage, i8_ptr_type) diff --git a/tests/c-form/xdp_test.bpf.c b/tests/c-form/xdp_test.bpf.c new file mode 100644 index 0000000..152b0ae --- /dev/null +++ b/tests/c-form/xdp_test.bpf.c @@ -0,0 +1,72 @@ +// xdp_ip_map.c +#include +#include +#include +#include +#include + +struct ip_key { + __u8 family; // 4 = IPv4 + __u8 pad[3]; // padding for alignment + __u8 addr[16]; // IPv4 uses first 4 bytes +}; + +// key → packet count +struct { + __uint(type, BPF_MAP_TYPE_HASH); + __uint(max_entries, 16384); + __type(key, struct ip_key); + __type(value, __u64); +} ip_count_map SEC(".maps"); + +SEC("xdp") +int xdp_ip_map(struct xdp_md *ctx) +{ + void *data_end = (void *)(long)ctx->data_end; + void *data = (void *)(long)ctx->data; + struct ethhdr *eth = data; + + if (eth + 1 > (struct ethhdr *)data_end) + return XDP_PASS; + + __u16 h_proto = eth->h_proto; + void *nh = data + sizeof(*eth); + + // VLAN handling: single tag + if (h_proto == bpf_htons(ETH_P_8021Q) || + h_proto == bpf_htons(ETH_P_8021AD)) { + + if (nh + 4 > data_end) + return XDP_PASS; + + h_proto = *(__u16 *)(nh + 2); + nh += 4; + } + + struct ip_key key = {}; + + // IPv4 + if (h_proto == bpf_htons(ETH_P_IP)) { + struct iphdr *iph = nh; + if (iph + 1 > (struct iphdr *)data_end) + return XDP_PASS; + + key.family = 4; + // Copy 4 bytes of IPv4 address + __builtin_memcpy(key.addr, &iph->saddr, 4); + + __u64 *val = bpf_map_lookup_elem(&ip_count_map, &key); + if (val) + (*val)++; + else { + __u64 init = 1; + bpf_map_update_elem(&ip_count_map, &key, &init, BPF_ANY); + } + + return XDP_PASS; + } + + return XDP_PASS; +} + +char _license[] SEC("license") = "GPL"; From 1593b7bcfe03f1e38d1aaea55963979cf8074b84 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Thu, 27 Nov 2025 12:41:57 +0530 Subject: [PATCH 04/10] feat:user defined struct casting --- pythonbpf/allocation_pass.py | 15 ++++- pythonbpf/assign_pass.py | 17 ++++++ pythonbpf/expr/expr_pass.py | 77 ++++++++++++++++++++++++- pythonbpf/type_deducer.py | 2 + tests/c-form/xdp_test.bpf.c | 82 ++++++++------------------- tests/failing_tests/xdp/xdp_test_1.py | 46 +++++++++++++++ 6 files changed, 176 insertions(+), 63 deletions(-) create mode 100644 tests/failing_tests/xdp/xdp_test_1.py diff --git a/pythonbpf/allocation_pass.py b/pythonbpf/allocation_pass.py index fc6f21e..9f5cb20 100644 --- a/pythonbpf/allocation_pass.py +++ b/pythonbpf/allocation_pass.py @@ -114,9 +114,18 @@ def _allocate_for_call( # Struct constructors elif call_type in structs_sym_tab: struct_info = structs_sym_tab[call_type] - var = builder.alloca(struct_info.ir_type, name=var_name) - local_sym_tab[var_name] = LocalSymbol(var, struct_info.ir_type, call_type) - logger.info(f"Pre-allocated {var_name} for struct {call_type}") + if len(rval.args) == 0: + # Zero-arg constructor: allocate the struct itself + var = builder.alloca(struct_info.ir_type, name=var_name) + local_sym_tab[var_name] = LocalSymbol(var, struct_info.ir_type, call_type) + logger.info(f"Pre-allocated {var_name} for struct {call_type}") + else: + # Pointer cast: allocate as pointer to struct + ptr_type = ir.PointerType(struct_info.ir_type) + var = builder.alloca(ptr_type, name=var_name) + var.align = 8 + local_sym_tab[var_name] = LocalSymbol(var, ptr_type, call_type) + logger.info(f"Pre-allocated {var_name} for struct pointer cast to {call_type}") elif VmlinuxHandlerRegistry.is_vmlinux_struct(call_type): # When calling struct_name(pointer), we're doing a cast, not construction diff --git a/pythonbpf/assign_pass.py b/pythonbpf/assign_pass.py index 5d73cf3..87e5657 100644 --- a/pythonbpf/assign_pass.py +++ b/pythonbpf/assign_pass.py @@ -174,6 +174,23 @@ def handle_variable_assignment( f"Type mismatch: vmlinux struct pointer requires i64, got {var_type}" ) return False + # Handle user-defined struct pointer casts + # val_type is a string (struct name), var_type is a pointer to the struct + if isinstance(val_type, str) and val_type in structs_sym_tab: + struct_info = structs_sym_tab[val_type] + expected_ptr_type = ir.PointerType(struct_info.ir_type) + + # Check if var_type matches the expected pointer type + if isinstance(var_type, ir.PointerType): + # val is already the correct pointer type from inttoptr/bitcast + builder.store(val, var_ptr) + logger.info(f"Assigned user-defined struct pointer cast to {var_name}") + return True + else: + logger.error( + f"Type mismatch: user-defined struct pointer cast requires pointer type, got {var_type}" + ) + return False if isinstance(val_type, Field): logger.info("Handling assignment to struct field") # Special handling for struct_xdp_md i32 fields that are zero-extended to i64 diff --git a/pythonbpf/expr/expr_pass.py b/pythonbpf/expr/expr_pass.py index abafb86..f52e924 100644 --- a/pythonbpf/expr/expr_pass.py +++ b/pythonbpf/expr/expr_pass.py @@ -618,7 +618,7 @@ def _handle_boolean_op( # ============================================================================ -# VMLinux casting +# Struct casting (including vmlinux struct casting) # ============================================================================ @@ -667,7 +667,7 @@ def _handle_vmlinux_cast( # If arg_val is an integer type, we need to inttoptr it ptr_type = ir.PointerType() # TODO: add a field value type check here - print(arg_type) + # print(arg_type) if isinstance(arg_type, Field): if ctypes_to_ir(arg_type.type.__name__): # Cast integer to pointer @@ -681,6 +681,69 @@ def _handle_vmlinux_cast( return casted_ptr, vmlinux_struct_type +def _handle_user_defined_struct_cast( + func, + module, + builder, + expr, + local_sym_tab, + map_sym_tab, + structs_sym_tab, +): + """Handle user-defined struct cast expressions like iphdr(nh). + + This casts a pointer/integer value to a pointer to the user-defined struct, + similar to how vmlinux struct casts work but for user-defined @struct types. + """ + if len(expr.args) != 1: + logger.info("User-defined struct cast takes exactly one argument") + return None + + # Get the struct name + struct_name = expr.func.id + + if struct_name not in structs_sym_tab: + logger.error(f"Struct {struct_name} not found in structs_sym_tab") + return None + + struct_info = structs_sym_tab[struct_name] + + # Evaluate the argument (e.g., + # an address/pointer value) + arg_result = eval_expr( + func, + module, + builder, + expr.args[0], + local_sym_tab, + map_sym_tab, + structs_sym_tab, + ) + + if arg_result is None: + logger.info("Failed to evaluate argument to user-defined struct cast") + return None + + arg_val, arg_type = arg_result + + # Cast the integer/pointer value to a pointer to the struct type + # The struct pointer type is a pointer to the struct's IR type + struct_ptr_type = ir.PointerType(struct_info.ir_type) + + # If arg_val is an integer type (like i64), convert to pointer using inttoptr + if isinstance(arg_val.type, ir.IntType): + casted_ptr = builder.inttoptr(arg_val, struct_ptr_type) + logger.info(f"Cast integer to pointer for struct {struct_name}") + elif isinstance(arg_val.type, ir.PointerType): + # If already a pointer, bitcast to the struct pointer type + casted_ptr = builder.bitcast(arg_val, struct_ptr_type) + logger.info(f"Bitcast pointer to struct pointer for {struct_name}") + else: + logger.error(f"Unsupported type for user-defined struct cast: {arg_val.type}") + return None + + return casted_ptr, struct_name + # ============================================================================ # Expression Dispatcher # ============================================================================ @@ -726,6 +789,16 @@ def eval_expr( map_sym_tab, structs_sym_tab, ) + if isinstance(expr.func, ast.Name) and (expr.func.id in structs_sym_tab): + return _handle_user_defined_struct_cast( + func, + module, + builder, + expr, + local_sym_tab, + map_sym_tab, + structs_sym_tab, + ) result = CallHandlerRegistry.handle_call( expr, module, builder, func, local_sym_tab, map_sym_tab, structs_sym_tab diff --git a/pythonbpf/type_deducer.py b/pythonbpf/type_deducer.py index 734b80b..2e4c77f 100644 --- a/pythonbpf/type_deducer.py +++ b/pythonbpf/type_deducer.py @@ -20,6 +20,8 @@ "c_int": ir.IntType(32), "c_ushort": ir.IntType(16), "c_short": ir.IntType(16), + "c_ubyte": ir.IntType(8), + "c_byte": ir.IntType(8), # Not so sure about this one "str": ir.PointerType(ir.IntType(8)), } diff --git a/tests/c-form/xdp_test.bpf.c b/tests/c-form/xdp_test.bpf.c index 152b0ae..0e90ce1 100644 --- a/tests/c-form/xdp_test.bpf.c +++ b/tests/c-form/xdp_test.bpf.c @@ -1,72 +1,38 @@ -// xdp_ip_map.c #include -#include -#include #include #include +#include -struct ip_key { - __u8 family; // 4 = IPv4 - __u8 pad[3]; // padding for alignment - __u8 addr[16]; // IPv4 uses first 4 bytes +struct fake_iphdr { + unsigned short useless; + unsigned short tot_len; + unsigned short id; + unsigned short frag_off; + unsigned char ttl; + unsigned char protocol; + unsigned short check; + unsigned int saddr; + unsigned int daddr; }; -// key → packet count -struct { - __uint(type, BPF_MAP_TYPE_HASH); - __uint(max_entries, 16384); - __type(key, struct ip_key); - __type(value, __u64); -} ip_count_map SEC(".maps"); - SEC("xdp") -int xdp_ip_map(struct xdp_md *ctx) +int xdp_prog(struct xdp_md *ctx) { - void *data_end = (void *)(long)ctx->data_end; - void *data = (void *)(long)ctx->data; - struct ethhdr *eth = data; - - if (eth + 1 > (struct ethhdr *)data_end) - return XDP_PASS; - - __u16 h_proto = eth->h_proto; - void *nh = data + sizeof(*eth); - - // VLAN handling: single tag - if (h_proto == bpf_htons(ETH_P_8021Q) || - h_proto == bpf_htons(ETH_P_8021AD)) { - - if (nh + 4 > data_end) - return XDP_PASS; - - h_proto = *(__u16 *)(nh + 2); - nh += 4; - } - - struct ip_key key = {}; - - // IPv4 - if (h_proto == bpf_htons(ETH_P_IP)) { - struct iphdr *iph = nh; - if (iph + 1 > (struct iphdr *)data_end) - return XDP_PASS; - - key.family = 4; - // Copy 4 bytes of IPv4 address - __builtin_memcpy(key.addr, &iph->saddr, 4); + void *data_end = (void *)(long)ctx->data_end; + void *data = (void *)(long)ctx->data; - __u64 *val = bpf_map_lookup_elem(&ip_count_map, &key); - if (val) - (*val)++; - else { - __u64 init = 1; - bpf_map_update_elem(&ip_count_map, &key, &init, BPF_ANY); - } + struct ethhdr *eth = data; + if ((void *)(eth + 1) > data_end) + return XDP_ABORTED; + if (eth->h_proto != __constant_htons(ETH_P_IP)) + return XDP_PASS; - return XDP_PASS; - } + struct fake_iphdr *iph = (struct fake_iphdr *)(eth + 1); + if ((void *)(iph + 1) > data_end) + return XDP_ABORTED; + bpf_printk("%d", iph->saddr); - return XDP_PASS; + return XDP_PASS; } char _license[] SEC("license") = "GPL"; diff --git a/tests/failing_tests/xdp/xdp_test_1.py b/tests/failing_tests/xdp/xdp_test_1.py new file mode 100644 index 0000000..b15414e --- /dev/null +++ b/tests/failing_tests/xdp/xdp_test_1.py @@ -0,0 +1,46 @@ +from vmlinux import XDP_PASS, XDP_DROP +from vmlinux import ( + struct_xdp_md, + struct_ethhdr, +) +from pythonbpf import bpf, section, bpfglobal, compile, compile_to_ir, struct +from ctypes import c_int64, c_ubyte, c_ushort, c_uint32 + +@bpf +@struct +class iphdr: + useless: c_ushort + tot_len: c_ushort + id: c_ushort + frag_off: c_ushort + ttl: c_ubyte + protocol: c_ubyte + check: c_ushort + saddr: c_uint32 + daddr: c_uint32 + +@bpf +@section("xdp") +def ip_detector(ctx: struct_xdp_md) -> c_int64: + data = ctx.data + data_end = ctx.data_end + eth = struct_ethhdr(ctx.data) + nh = ctx.data + 14 + if nh + 20 > data_end: + return c_int64(XDP_DROP) + iph = iphdr(nh) + h_proto = eth.h_proto + h_proto_ext = c_int64(h_proto) + ipv4 = iph.saddr + print(f"ipaddress: {ipv4}") + return c_int64(XDP_PASS) + + +@bpf +@bpfglobal +def LICENSE() -> str: + return "GPL" + + +compile_to_ir("xdp_test_1.py", "xdp_test_1.ll") +compile() From 189526d5ca9bbec0f75a4efe6a150b1e52a0e429 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Thu, 27 Nov 2025 12:42:10 +0530 Subject: [PATCH 05/10] format chore --- pythonbpf/allocation_pass.py | 8 ++++++-- pythonbpf/expr/expr_pass.py | 15 ++++++++------- tests/failing_tests/xdp/xdp_test_1.py | 2 ++ 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/pythonbpf/allocation_pass.py b/pythonbpf/allocation_pass.py index 9f5cb20..9099ced 100644 --- a/pythonbpf/allocation_pass.py +++ b/pythonbpf/allocation_pass.py @@ -117,7 +117,9 @@ def _allocate_for_call( if len(rval.args) == 0: # Zero-arg constructor: allocate the struct itself var = builder.alloca(struct_info.ir_type, name=var_name) - local_sym_tab[var_name] = LocalSymbol(var, struct_info.ir_type, call_type) + local_sym_tab[var_name] = LocalSymbol( + var, struct_info.ir_type, call_type + ) logger.info(f"Pre-allocated {var_name} for struct {call_type}") else: # Pointer cast: allocate as pointer to struct @@ -125,7 +127,9 @@ def _allocate_for_call( var = builder.alloca(ptr_type, name=var_name) var.align = 8 local_sym_tab[var_name] = LocalSymbol(var, ptr_type, call_type) - logger.info(f"Pre-allocated {var_name} for struct pointer cast to {call_type}") + logger.info( + f"Pre-allocated {var_name} for struct pointer cast to {call_type}" + ) elif VmlinuxHandlerRegistry.is_vmlinux_struct(call_type): # When calling struct_name(pointer), we're doing a cast, not construction diff --git a/pythonbpf/expr/expr_pass.py b/pythonbpf/expr/expr_pass.py index f52e924..d741459 100644 --- a/pythonbpf/expr/expr_pass.py +++ b/pythonbpf/expr/expr_pass.py @@ -682,13 +682,13 @@ def _handle_vmlinux_cast( def _handle_user_defined_struct_cast( - func, - module, - builder, - expr, - local_sym_tab, - map_sym_tab, - structs_sym_tab, + func, + module, + builder, + expr, + local_sym_tab, + map_sym_tab, + structs_sym_tab, ): """Handle user-defined struct cast expressions like iphdr(nh). @@ -744,6 +744,7 @@ def _handle_user_defined_struct_cast( return casted_ptr, struct_name + # ============================================================================ # Expression Dispatcher # ============================================================================ diff --git a/tests/failing_tests/xdp/xdp_test_1.py b/tests/failing_tests/xdp/xdp_test_1.py index b15414e..bda7664 100644 --- a/tests/failing_tests/xdp/xdp_test_1.py +++ b/tests/failing_tests/xdp/xdp_test_1.py @@ -6,6 +6,7 @@ from pythonbpf import bpf, section, bpfglobal, compile, compile_to_ir, struct from ctypes import c_int64, c_ubyte, c_ushort, c_uint32 + @bpf @struct class iphdr: @@ -19,6 +20,7 @@ class iphdr: saddr: c_uint32 daddr: c_uint32 + @bpf @section("xdp") def ip_detector(ctx: struct_xdp_md) -> c_int64: From 9becee8f77eb60a71909e0d74a6efbb909f7a9f8 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Thu, 27 Nov 2025 12:44:12 +0530 Subject: [PATCH 06/10] add expected type check --- pythonbpf/assign_pass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonbpf/assign_pass.py b/pythonbpf/assign_pass.py index 87e5657..412af93 100644 --- a/pythonbpf/assign_pass.py +++ b/pythonbpf/assign_pass.py @@ -181,7 +181,7 @@ def handle_variable_assignment( expected_ptr_type = ir.PointerType(struct_info.ir_type) # Check if var_type matches the expected pointer type - if isinstance(var_type, ir.PointerType): + if isinstance(var_type, ir.PointerType) and var_type == expected_ptr_type: # val is already the correct pointer type from inttoptr/bitcast builder.store(val, var_ptr) logger.info(f"Assigned user-defined struct pointer cast to {var_name}") From d43d3ad6371fe5b65d7a966a83a2ed545bfa7a2f Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Thu, 27 Nov 2025 12:45:48 +0530 Subject: [PATCH 07/10] clear disksnoop output --- BCC-Examples/disksnoop.ipynb | 3586 +--------------------------------- 1 file changed, 7 insertions(+), 3579 deletions(-) diff --git a/BCC-Examples/disksnoop.ipynb b/BCC-Examples/disksnoop.ipynb index 2265a07..3e993d3 100644 --- a/BCC-Examples/disksnoop.ipynb +++ b/BCC-Examples/disksnoop.ipynb @@ -2,3027 +2,10 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "c3520e58-e50f-4bc1-8f9d-a6fecbf6e9f0", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2025-11-25 22:47:31,621 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,622 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,622 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,623 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,623 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,623 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,624 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,624 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,625 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,625 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,625 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,626 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,626 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,626 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,627 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,627 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,627 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,628 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,628 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,629 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,629 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,629 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,630 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,631 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,632 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,632 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,632 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,632 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,633 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,634 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,635 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,636 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,637 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,638 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,638 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,638 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,638 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,639 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,639 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,640 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,640 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,641 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,642 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,642 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,642 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,643 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,643 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,643 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,644 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,644 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,645 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,645 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,645 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,646 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,646 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,646 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,646 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,647 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,647 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,647 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,648 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,648 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,648 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,649 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,649 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,649 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,650 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,650 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,650 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,650 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,651 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,651 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,651 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,652 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,652 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,653 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,653 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,653 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,654 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,654 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,654 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,655 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,655 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,655 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,655 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,656 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,656 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,656 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,657 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,657 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,657 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,658 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,658 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,658 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,658 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,659 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,659 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,659 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,660 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,660 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,660 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,660 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,661 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,661 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,661 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,662 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,662 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,662 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,663 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,663 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,663 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,663 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,664 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,664 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,664 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,665 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,665 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,665 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,666 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,666 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,666 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,667 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,667 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,667 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,667 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,668 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,668 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,668 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,669 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,669 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,669 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,670 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,670 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,670 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,671 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,671 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,671 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,671 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,672 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,672 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,672 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,673 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,673 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,673 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,673 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,674 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,674 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,675 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,675 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,675 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,676 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,676 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,676 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,677 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,677 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,677 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,678 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,678 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,678 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,679 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,679 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,680 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,680 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,680 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,681 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,681 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,681 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,681 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,682 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,683 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,683 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,683 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,684 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,684 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,684 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,691 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,691 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,691 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,692 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,692 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,693 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,694 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,695 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,695 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,696 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,696 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:31,697 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,145 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,146 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,146 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,146 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,147 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,148 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,149 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,150 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,151 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,151 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,151 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,152 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,152 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,152 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,153 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,153 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,153 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,154 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,154 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,154 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,154 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,155 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,155 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,158 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,159 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,159 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,159 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,159 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,160 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,161 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,161 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,161 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,162 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,163 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,163 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,163 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,163 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,164 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,165 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,166 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,167 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,167 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,167 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,167 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,168 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,168 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,168 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,168 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,169 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,169 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,169 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,170 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,170 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,170 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,171 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,172 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,173 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,173 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,173 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,174 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,174 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,174 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,175 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,175 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,175 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,176 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,177 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,178 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,179 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,180 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,181 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,182 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,183 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,184 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,185 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,185 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,185 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,186 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,186 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,186 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,187 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,187 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,187 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,190 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,190 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,190 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,190 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,191 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,191 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,191 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,191 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,192 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,192 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,192 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,193 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,194 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,196 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,197 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,198 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,199 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,200 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,201 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,201 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,201 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,201 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,202 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,202 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,203 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,203 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,204 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,204 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,205 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,205 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,205 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,206 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,206 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,206 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,207 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,208 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,208 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,209 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,210 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,211 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,212 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,212 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,213 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,213 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,213 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,214 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,215 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,216 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,216 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,216 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,216 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,217 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,217 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,217 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,218 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,218 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,218 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,219 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,219 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,222 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,222 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,222 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,223 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,223 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,223 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,223 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,224 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,224 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,225 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,225 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,225 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,226 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,226 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,226 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,226 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,227 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,227 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,227 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,227 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,228 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,229 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,229 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,229 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,229 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,230 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,231 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,232 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,233 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,234 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,234 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,234 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,236 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,237 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,238 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,239 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,240 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,241 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,242 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,243 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,244 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,245 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,246 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,247 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,248 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,249 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,250 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,250 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,250 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,250 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,251 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,252 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,253 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,254 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,255 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,256 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,257 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,258 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,259 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,260 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,261 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,261 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,261 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,261 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,264 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,268 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,268 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,269 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,270 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,271 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,271 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,271 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,271 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,272 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,273 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,275 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,276 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,277 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,277 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,278 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,278 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,279 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,280 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,280 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,280 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,280 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,281 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,282 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,282 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,282 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,283 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,283 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,283 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,284 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,284 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,284 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,285 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,285 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,285 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,285 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,287 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,287 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,288 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,289 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,289 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,290 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,291 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,291 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,291 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,291 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,292 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,293 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,294 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,295 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,296 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,296 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,297 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,298 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,298 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,298 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,298 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,299 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,299 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,299 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,299 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,300 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,300 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,302 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,303 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,303 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,304 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,304 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,304 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,305 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,305 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,306 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,306 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,306 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,307 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,307 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,307 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,308 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,308 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,308 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,309 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,309 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,309 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,310 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,310 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,310 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,313 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,313 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,314 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,314 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,314 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,315 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,315 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,315 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,316 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,316 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,316 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,316 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,317 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,317 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,317 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,318 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,318 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,318 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,319 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,319 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,319 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,320 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,320 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,320 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,321 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,321 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,321 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,322 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,322 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,322 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,322 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,323 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,325 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,325 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,326 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,327 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,328 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,329 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,330 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,331 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,332 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,333 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,334 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,335 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,336 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,337 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,338 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,339 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,340 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,343 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,343 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,343 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,343 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,344 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,344 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,344 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,345 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,345 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,345 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,345 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,346 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,347 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,348 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,349 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,350 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,351 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,351 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,351 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,351 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,352 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,352 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,352 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,352 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,353 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,354 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,355 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,358 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,358 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,359 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,360 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,360 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,360 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,360 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,361 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,362 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,363 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,364 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,365 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,365 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,365 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,365 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,366 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,367 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,368 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,370 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,371 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,371 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,371 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,371 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,372 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,372 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,372 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,372 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,373 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,373 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,373 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,373 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,374 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,374 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,374 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,375 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,376 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,377 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,377 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,378 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,378 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,378 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,378 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,379 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,379 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,379 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,379 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,380 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,380 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,380 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,381 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,382 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,382 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,382 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,382 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,383 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,383 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,384 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,384 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,384 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,384 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,385 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,386 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,387 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,388 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,389 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,390 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,391 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,392 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,393 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,394 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,395 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,396 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,397 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,398 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,399 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,400 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,401 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,402 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,403 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,403 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,403 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,404 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,404 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,404 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,404 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,405 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,405 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,405 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,406 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,407 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,407 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,412 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,412 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,413 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,413 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,413 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,413 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,415 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,416 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,416 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,417 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,417 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,418 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,418 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,418 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,419 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,419 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,419 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,420 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,420 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,420 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,420 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,421 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,421 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,421 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,421 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,422 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,422 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,422 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,423 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,423 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,424 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,424 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,424 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,425 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,425 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,425 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,425 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,426 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,426 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,426 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,426 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,427 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,427 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,427 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,427 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,428 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,428 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,428 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,429 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,429 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,429 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,429 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,430 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,430 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,430 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,431 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,431 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,431 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,432 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,432 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,432 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,433 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,433 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,433 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,434 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,434 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,434 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,435 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,435 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,435 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,436 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,436 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,436 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,437 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,437 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,437 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,438 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,438 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,438 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,439 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,439 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,440 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,440 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,440 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,440 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,441 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,442 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,443 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,444 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,445 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,446 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,447 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,448 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,449 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,450 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,451 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,452 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,453 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,454 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,455 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,455 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,455 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,455 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,456 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,457 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,457 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,457 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,457 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,458 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,459 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,459 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,459 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,460 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,460 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,462 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,463 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,463 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,463 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,464 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,464 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,464 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,465 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,465 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,465 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,465 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,466 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,466 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,466 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,472 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,477 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,477 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,479 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,479 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,480 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,481 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,482 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,482 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,482 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,483 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,483 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,483 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,483 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,484 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,485 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,485 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,486 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,486 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,486 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,486 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,488 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,489 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,490 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,490 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,491 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,492 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,493 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,494 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,494 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,494 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,495 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,495 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,495 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,495 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,496 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,496 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,496 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,497 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,497 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,497 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,498 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,500 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,500 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,500 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,501 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,502 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,503 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,503 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,503 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,504 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,504 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,505 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,505 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,505 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,506 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,507 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,507 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,507 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,509 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,509 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,510 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,513 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,513 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,514 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,514 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,516 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,516 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,517 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,517 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,517 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,518 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,521 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,521 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,522 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,522 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,523 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,524 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,524 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,524 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,525 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,526 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,527 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,527 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,527 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,527 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,528 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,528 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,529 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,529 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,529 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,530 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,530 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,531 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,531 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,531 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,532 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,532 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,532 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,533 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,533 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,533 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,533 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,534 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,534 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,534 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,535 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,535 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,535 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,536 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,536 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,536 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,537 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,537 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,537 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,538 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,539 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,539 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,540 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,541 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,542 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,542 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,545 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,545 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,545 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,546 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,549 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,549 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,549 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,550 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,550 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,550 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,550 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,551 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,552 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,553 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,554 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,554 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,554 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,554 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,555 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,555 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,555 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,555 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,556 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,557 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,558 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,558 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,559 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,559 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,559 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,560 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,561 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,561 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,561 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,562 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,562 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,562 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,563 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,563 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,563 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,564 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,564 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,565 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,565 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,565 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,565 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,570 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,571 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,572 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,573 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,573 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,573 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,574 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,574 [WARNING] pythonbpf.vmlinux_parser.class_handler: Blindly processing CFUNCTYPE ctypes to ensure compilation. Unsupported\n", - "2025-11-25 22:47:32,577 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freelist is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,577 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_freelist_aba_t\n", - "2025-11-25 22:47:32,577 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_kmem_cache_cpu_0\n", - "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,578 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_slab_0_0_0\n", - "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_slab_0_0_1_0_0\n", - "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,579 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_slab_0_0_1\n", - "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field func is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,580 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_slab_0\n", - "2025-11-25 22:47:32,581 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,581 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,581 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,581 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_qspinlock_0\n", - "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_spinlock_0\n", - "2025-11-25 22:47:32,582 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field filter is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field uevent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field uevent_ops is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,583 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field store is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field f_mapping is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,584 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field read is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field llseek is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mmap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field is_visible is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field is_bin_visible is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,585 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field child_ns_type is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field namespace is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_ownership is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_options is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,586 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mkdir is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rmdir is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rename is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_path is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,587 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field syscall_ops is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field open is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seq_show is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,588 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seq_start is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seq_next is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seq_stop is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field read is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,589 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poll is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mmap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field llseek is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_kernfs_node_0\n", - "2025-11-25 22:47:32,590 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field __lstate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_qrwlock_0\n", - "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,591 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,592 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,592 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,592 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,592 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iattr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,593 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,593 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,593 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ctor is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,594 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field random_seq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,595 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field node is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_sched is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field exit_sched is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_hctx is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field exit_hctx is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field depth_updated is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field allow_merge is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bio_merge is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field request_merge is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field request_merged is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,597 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field requests_merged is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field limit_depth is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prepare_request is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field finish_request is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field insert_requests is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dispatch_request is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,598 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field has_work is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field completed_request is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field requeue_request is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field former_request is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field next_request is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_icq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,599 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field exit_icq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field store is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field store is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,600 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field setup is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field test is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field string is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field num is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ops is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_kernel_param_0\n", - "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,605 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attrs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,605 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,605 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,610 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,611 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field strtab is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field typetab is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attrs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,619 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attrs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,619 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field gp_seq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,619 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field seglen is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,620 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,620 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field function is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,621 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,621 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field func is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,622 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,622 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field srcu_have_cbs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,623 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field srcu_data_have_cbs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,623 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field srcu_parent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,624 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,624 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mynode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ssp is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_worker_0\n", - "2025-11-25 22:47:32,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bits is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cpumask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field __pod_cpumask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field busy_hash is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field manager is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field detach_completion is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,632 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attrs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,632 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,632 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union___call_single_node_0\n", - "2025-11-25 22:47:32,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field func is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bucket is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bitmap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field queue is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,639 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,639 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_maple_tree_0\n", - "2025-11-25 22:47:32,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field counters is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field load_binary is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field load_shlib is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field core_dump is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field confirm_switch is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_page_0_0_0\n", - "2025-11-25 22:47:32,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_posix_acl_entry_0\n", - "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field a_entries is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field lookup is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_link is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field permission is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_inode_acl is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field readlink is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field create is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field link is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unlink is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field symlink is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mkdir is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rmdir is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mknod is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rename is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field setattr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field getattr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field listxattr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fiemap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field update_time is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field atomic_open is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field tmpfile is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_acl is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_acl is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fileattr_set is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fileattr_get is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_offset_ctx is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field type is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_fs_context is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parameters is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mount is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,659 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field kill_sb is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,660 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field owner is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,660 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field next is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,660 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field s_writers_key is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,660 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc_inode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,661 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field destroy_inode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,661 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_inode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,661 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dirty_inode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_inode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field drop_inode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field evict_inode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field put_super is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_fs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze_super is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze_fs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field thaw_super is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unfreeze_fs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,665 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field statfs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,665 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field remount_fs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field umount_begin is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_options is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_devname is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_path is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,667 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show_stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,667 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_read is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,667 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_write is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,668 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_dquots is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,668 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nr_cached_objects is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,668 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_cached_objects is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,668 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shutdown is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,669 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_dquot is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,669 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc_dquot is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,669 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field destroy_dquot is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,670 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field acquire_dquot is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,670 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release_dquot is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,670 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mark_dirty is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,671 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_info is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,671 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_reserved_space is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,671 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_projid is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,671 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_inode_usage is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,672 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_next_id is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,672 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_on is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,672 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_off is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,673 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_enable is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,673 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_disable is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,673 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field quota_sync is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,674 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_info is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,674 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_dqblk is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,674 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_nextdqblk is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_dqblk is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_state is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rm_xquota is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field encode_fh is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,675 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fh_to_dentry is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fh_to_parent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_parent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field commit_metadata is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_uuid is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,676 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_blocks is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,677 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field commit_blocks is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,677 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_qstr_0\n", - "2025-11-25 22:47:32,677 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,677 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_lockref_0\n", - "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,678 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_revalidate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,680 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_weak_revalidate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,681 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_hash is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,681 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_compare is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,682 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_delete is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,682 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_init is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,682 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,682 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_prune is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,683 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_iput is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,683 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_dname is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,683 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_automount is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,684 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_manage is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,684 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_real is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,684 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_dentry_0\n", - "2025-11-25 22:47:32,685 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,685 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,685 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,686 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_dentry_d_u\n", - "2025-11-25 22:47:32,686 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,686 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,686 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,687 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_iname is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,687 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_op is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,687 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field d_sb is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,687 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prefix is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field list is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,688 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field legacy_key_prefix is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_context is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_context is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_dummy_policy is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field empty_dir is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,689 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field has_stable_inodes is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,690 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_devices is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,690 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,690 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field key_hashtable is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,690 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field begin_enable_verity is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field end_enable_verity is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_verity_descriptor is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field read_merkle_tree_page is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_merkle_tree_block is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,691 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field utf8agetab is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field utf8nfdicfdata is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field utf8nfdidata is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,692 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field utf8data is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,693 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,693 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ntab is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,693 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field tables is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,693 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_register is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_reserve is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_preempt is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_clear is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,694 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_read_keys is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pr_read_reservation is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field submit_bio is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poll_bio is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field open is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,695 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ioctl is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,696 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field compat_ioctl is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,696 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field check_events is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,696 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unlock_native_capacity is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,696 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field getgeo is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_read_only is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_disk is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field swap_slot_free_notify is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field report_zones is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field devnode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,697 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_unique_id is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,698 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alternative_gpt_sector is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,698 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release_agent_path is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,699 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,699 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field x is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,700 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,700 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field tasks is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,700 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field times is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,700 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field times_prev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pcpu is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg_total is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,701 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg_nr_triggers is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field total is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rtpoll_task is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rtpoll_nr_triggers is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,702 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,703 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rtpoll_total is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,703 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_btf_type_0\n", - "2025-11-25 22:47:32,703 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,704 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,704 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field filters is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,704 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,705 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dtor is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,705 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,706 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_btf_field_0\n", - "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,707 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fields is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field record is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,708 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field types is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,709 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resolved_ids is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,709 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resolved_sizes is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,709 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field strings is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,709 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field kfunc_set_tab is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dtor_kfunc_tab is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field struct_meta_tab is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field base_btf is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,710 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,711 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field func is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,711 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field saved_func is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,712 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ops_func is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,712 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field arg_size is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,712 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field arg_flags is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,713 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,713 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,714 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,714 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,715 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_bpf_tramp_image_0\n", - "2025-11-25 22:47:32,715 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,715 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,716 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,716 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field progs_cnt is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,717 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,717 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cur_image is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,717 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mod is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,718 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field start is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,718 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field stop is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,719 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field next is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,719 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,719 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_seq_private is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,720 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fini_seq_private is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,720 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,721 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_alloc_check is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,721 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_alloc is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,721 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,722 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_free is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,722 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_get_next_key is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,722 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_release_uref is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,723 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_elem_sys_only is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,723 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_batch is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,723 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_and_delete_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,723 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_and_delete_batch is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,724 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_update_batch is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,724 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_delete_batch is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,724 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,724 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_update_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,725 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_delete_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,725 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_push_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,730 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_pop_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,732 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_peek_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,733 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_lookup_percpu_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,733 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_fd_get_ptr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,733 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_fd_put_ptr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_gen_lookup is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_fd_sys_lookup_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_seq_show_elem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_check_btf is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,734 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_poke_track is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,735 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_poke_untrack is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,735 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_poke_run is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,735 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_direct_value_addr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,736 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_direct_value_meta is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,736 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_mmap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,736 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_poll is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,737 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_local_storage_charge is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,737 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_local_storage_uncharge is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,737 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_owner_storage_ptr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,737 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_redirect is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_meta_equal is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_set_for_each_callback_args is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_for_each_callback is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_mem_usage is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,738 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_btf_id is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,739 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iter_seq_info is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,740 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_mem_cgroup_0\n", - "2025-11-25 22:47:32,741 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,741 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,741 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,742 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,743 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,744 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,744 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_local is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,744 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events_local is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,745 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_pending is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,745 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events_pending is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,745 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,746 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,746 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vmstats is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,746 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,746 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,747 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_prev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,747 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field events_prev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,747 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field targets is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,747 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,748 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,748 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field waitq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,749 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,749 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,749 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,749 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field min_seq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field timestamps is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field folios is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nr_pages is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg_refaulted is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,750 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field avg_total is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,751 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field protected is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,751 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field evicted is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,751 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field refaulted is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,751 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,752 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field filters is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,752 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,753 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,753 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field lists is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,753 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_stat_diff is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,754 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,754 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_numa_event is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,755 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field _watermark is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,755 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field lowmem_reserve is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,755 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,755 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field zone_pgdat is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,756 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field per_cpu_pageset is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,756 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field per_cpu_zonestats is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,756 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,757 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,757 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,758 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_area is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,759 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,759 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field compact_cached_migrate_pfn is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,761 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_4 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,761 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_stat is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,762 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_numa_event is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,764 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,782 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nr_pages is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,783 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mm_stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,784 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,785 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nr_memcgs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,786 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fifo is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,786 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,787 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_node_stat_diff is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,788 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,788 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,789 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field put is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,790 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,790 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prepare is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,791 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field complete is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,792 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,792 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,792 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,793 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field thaw is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,793 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poweroff is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,793 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field restore is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,794 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend_late is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,794 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume_early is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,794 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze_late is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,794 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field thaw_early is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,795 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poweroff_late is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,795 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field restore_early is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,795 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend_noirq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,795 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume_noirq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,796 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field freeze_noirq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,796 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field thaw_noirq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,796 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field poweroff_noirq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,797 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field restore_noirq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,797 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field runtime_suspend is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,797 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field runtime_resume is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,797 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field runtime_idle is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,798 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,798 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,799 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field match is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,799 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field uevent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,799 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field probe is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,800 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_state is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,800 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field remove is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,800 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shutdown is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,800 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field online is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,801 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field offline is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,801 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,801 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,801 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field num_vf is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,802 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_configure is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,802 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_cleanup is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,802 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,803 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,803 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field type is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,803 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field compatible is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,804 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field id is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,805 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,809 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mod_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,810 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,810 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field of_match_table is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,811 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field acpi_match_table is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,811 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field probe is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,812 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_state is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,813 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field remove is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,813 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shutdown is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,813 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,814 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,814 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field groups is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,814 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_groups is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,815 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pm is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,815 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field coredump is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,815 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field p is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,816 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field deferred_probe_reason is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,819 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,820 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field uevent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,820 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field devnode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,821 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,822 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,823 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,824 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,825 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,825 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,826 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field wakeirq is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,827 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,830 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,830 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field running is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,830 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_time is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,831 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field function is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,832 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,833 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,834 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain_data is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,835 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field notifier_call is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,835 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,836 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,837 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,837 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,838 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,838 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field qos is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,838 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_dev_pm_qos_request_data\n", - "2025-11-25 22:47:32,839 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,839 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,839 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,840 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,840 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,841 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,842 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field subsys_data is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,842 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_latency_tolerance is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,842 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field qos is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,843 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field start is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,844 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field detach is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,844 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field activate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,844 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,844 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dismiss is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,845 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_performance_state is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,845 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,845 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cpus is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,846 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,846 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,847 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field match is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,847 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field select is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,847 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,847 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field xlate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field activate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field deactivate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,848 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field translate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,849 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,849 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field put is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,849 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_is_available is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,849 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_get_match_data is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_dma_supported is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_get_dma_attr is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field property_present is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field property_read_int_array is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field property_read_string_array is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,850 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_name_prefix is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_parent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_next_child_node is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_named_child_node is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,851 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_reference_args is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graph_get_next_endpoint is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graph_get_remote_endpoint is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graph_get_port_parent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graph_parse_endpoint is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iomap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,852 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_get is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,853 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field add_links is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,853 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_startup is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_shutdown is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_enable is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,854 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_disable is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_ack is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_mask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_mask_ack is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_unmask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_eoi is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_affinity is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,855 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_retrigger is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_type is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_wake is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_bus_lock is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_bus_sync_unlock is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,856 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_suspend is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_resume is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_pm_shutdown is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_calc_mask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_print_chip is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_request_resources is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,857 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_release_resources is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,858 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_compose_msi_msg is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,858 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_write_msi_msg is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,861 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_get_irqchip_state is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,861 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_irqchip_state is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,861 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_set_vcpu_affinity is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,862 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ipi_send_single is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,862 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ipi_send_mask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,862 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_nmi_setup is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,862 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field irq_nmi_teardown is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,863 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field handler is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,863 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mask_cache is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,864 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field reg_readl is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field reg_writel is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field suspend is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field resume is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,865 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field chip_types is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,866 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,866 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field gc is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,867 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,867 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prefix is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,867 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_dev_msi_info is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_x86_msi_addr_lo_0\n", - "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_msg_0\n", - "2025-11-25 22:47:32,868 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,869 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,869 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_msg_1\n", - "2025-11-25 22:47:32,869 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,869 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_x86_msi_data_0\n", - "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_msg_2\n", - "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,870 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,871 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field show is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,871 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field store is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,871 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_pci_msi_desc_0\n", - "2025-11-25 22:47:32,871 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,872 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,872 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_pci_msi_desc_2\n", - "2025-11-25 22:47:32,872 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,872 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,873 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,873 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_domain_cookie\n", - "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_instance_cookie\n", - "2025-11-25 22:47:32,874 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_msi_desc_0\n", - "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,875 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field affinity is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sysfs_attrs is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_msi_msg is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,876 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,877 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field gc is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pm_dev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,878 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,879 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field msi_parent_ops is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,879 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,879 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field revmap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,880 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,880 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_irq_alloc_info_0\n", - "2025-11-25 22:47:32,880 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,880 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,881 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,881 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,881 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field desc is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,881 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field write_msg is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,882 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,882 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc_pages is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_pages is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,883 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field alloc_noncontiguous is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,884 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free_noncontiguous is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,887 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field mmap is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,887 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_sgtable is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,887 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_page is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,888 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap_page is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,888 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_sg is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,888 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap_sg is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,888 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_resource is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap_resource is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_single_for_cpu is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_single_for_device is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_sg_for_cpu is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sync_sg_for_device is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,889 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cache_sync is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_supported is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_required_mask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field max_mapping_size is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field opt_mapping_size is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,890 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_merge_boundary is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,891 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,892 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,892 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,892 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field areas is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,893 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field slots is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,893 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,893 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,894 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,894 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,894 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,895 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field next is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,895 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,895 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field full_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field properties is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field deadprops is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,896 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field child is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,897 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field sibling is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,897 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,897 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field current_may_mount is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,897 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field grab_current_ns is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field netlink_ns is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field initial_ns is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field drop_ns is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,898 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_uevent is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field devnode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field class_release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shutdown_pre is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,899 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field namespace is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,900 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_ownership is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,900 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attach_dev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,900 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_dev_pasid is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,901 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map_pages is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,901 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unmap_pages is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,901 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field flush_iotlb_all is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,901 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iotlb_sync_map is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,902 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iotlb_sync is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,902 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cache_invalidate_user is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,902 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iova_to_phys is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,902 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field enforce_cache_coherency is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,903 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field enable_nesting is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,903 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_pgtable_quirks is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,903 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field free is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,904 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field set_dirty_tracking is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,904 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field read_and_clear_dirty is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,904 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field capable is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,905 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field hw_info is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,905 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain_alloc is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,905 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain_alloc_user is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,905 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain_alloc_paging is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field probe_device is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release_device is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field probe_finalize is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field device_group is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,906 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field get_resv_regions is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,907 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field of_xlate is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,907 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field is_attach_deferred is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,907 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_enable_feat is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,907 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dev_disable_feat is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,908 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field page_response is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,908 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field def_domain_type is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,908 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field remove_dev_pasid is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,909 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,910 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_iova_magazine_0\n", - "2025-11-25 22:47:32,910 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,910 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,911 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pfns is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,911 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,911 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field loaded is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,912 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field prev is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,912 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,912 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cached_node is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,912 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cached32_node is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,913 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rcaches is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,913 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_iommu_dma_cookie_0_0_0\n", - "2025-11-25 22:47:32,914 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,914 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,914 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,914 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_iommu_dma_cookie_0\n", - "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,915 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,916 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,916 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fq_domain is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,916 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field handler is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,917 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,917 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_iommu_domain_0\n", - "2025-11-25 22:47:32,917 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ops is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dirty_ops is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field owner is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,918 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iova_cookie is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,919 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iopf_handler is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,919 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,919 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iommu_data_release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field default_domain is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field blocking_domain is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,920 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field domain is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,921 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,921 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field handler is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,922 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ids is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,923 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,924 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,924 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,926 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_mask is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,926 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_range_map is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,927 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_parms is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,927 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dma_io_tlb_mem is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,927 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,928 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field of_node is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,928 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field fwnode is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,928 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field class is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,928 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field groups is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,929 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field release is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,929 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iommu_group is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,933 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field iommu is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,933 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field physical_location is a function pointer, using void pointer\n", - "2025-11-25 22:47:32,935 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bits is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,596 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,601 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field reclaim_wait is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,602 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field kswapd is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field kcompactd is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,603 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_4 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field per_cpu_nodestats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vm_stat is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,604 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field memtier is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,606 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,606 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field refaults is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,606 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field pgdat is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,607 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,607 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_prev is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,607 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,607 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_local is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,608 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field state_pending is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,608 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,608 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field map is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,609 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,609 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unit is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,609 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field lru_zone_size is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,609 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field shrinker_info is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,610 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,610 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field memcg is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,611 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,611 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,611 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vmstats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field memory_events is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field memory_events_local is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_3 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,612 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_4 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field objcg is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field orig_objcg is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_5 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field move_lock_task is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,613 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field vmstats_percpu is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,614 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cgwb_frn is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,614 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_6 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,614 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field nodeinfo is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,615 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_obj_cgroup_0\n", - "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_bpf_map_0\n", - "2025-11-25 22:47:33,616 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,617 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field name is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,618 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field elem_count is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,619 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,621 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_bpf_jit_poke_descriptor_0\n", - "2025-11-25 22:47:33,621 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,622 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,623 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,624 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,624 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field test_run is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,625 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_2 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_init is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,626 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_uninit is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_open is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_stop is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_start_xmit is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_features_check is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_select_queue is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,627 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_change_rx_flags is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_rx_mode is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,628 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_mac_address is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_validate_addr is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_do_ioctl is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_eth_ioctl is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_siocbond is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_siocwandev is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_siocdevprivate is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,629 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_config is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_change_mtu is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_neigh_setup is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_tx_timeout is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_stats64 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_has_offload_stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,630 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_offload_stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_vlan_rx_add_vid is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_vlan_rx_kill_vid is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_poll_controller is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_netpoll_setup is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_netpoll_cleanup is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,631 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_mac is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,632 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_vlan is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_rate is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_spoofchk is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,633 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_trust is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_vf_config is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_link_state is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_vf_stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_port is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_vf_port is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_vf_guid is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,634 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_guid is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_vf_rss_query_en is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_setup_tc is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_enable is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_disable is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_ddp_setup is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,635 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_ddp_done is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_ddp_target is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_get_hbainfo is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fcoe_get_wwn is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_rx_flow_steer is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_add_slave is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_del_slave is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,636 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_xmit_slave is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_sk_get_lower_dev is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fix_features is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_features is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_neigh_construct is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_neigh_destroy is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,637 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_add is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_del is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_del_bulk is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_dump is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fdb_get is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_add is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,638 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_del is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_del_bulk is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_dump is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_mdb_get is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_bridge_setlink is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_bridge_getlink is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,640 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_bridge_dellink is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_change_carrier is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_phys_port_id is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_port_parent_id is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_phys_port_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_dfwd_add_station is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,641 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_dfwd_del_station is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_tx_maxrate is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_iflink is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fill_metadata_dst is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_set_rx_headroom is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_bpf is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_xdp_xmit is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,642 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_xdp_get_xmit_slave is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_xsk_wakeup is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_tunnel_ctl is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_peer_dev is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_fill_forward_path is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_get_tstamp is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,643 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_hwtstamp_get is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ndo_hwtstamp_set is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field create is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,644 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parse is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cache is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cache_update is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field validate is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field parse_protocol is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,645 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field select_queue is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field graft is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field leaf is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field qlen_notify is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field find is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,646 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field change is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field delete is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field walk is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field tcf_block is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field bind_tcf is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field unbind_tcf is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,647 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dump is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dump_stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field id is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field enqueue is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,648 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dequeue is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field peek is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field init is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field reset is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field destroy is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field change is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,649 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field attach is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field change_tx_queue_len is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field change_real_num_tx is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dump is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field dump_stats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ingress_block_set is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field egress_block_set is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,650 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ingress_block_get is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field egress_block_get is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field owner is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,651 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field data is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field cpu_bstats is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,652 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_1 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sk_buff_0_0_0\n", - "2025-11-25 22:47:33,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,653 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sk_buff_0\n", - "2025-11-25 22:47:33,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,654 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,655 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sock_common_0\n", - "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sock_common_1\n", - "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,656 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sock_common_2\n", - "2025-11-25 22:47:33,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,657 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_sock_common_3\n", - "2025-11-25 22:47:33,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field slab_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,658 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field rtx_syn_ack is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,661 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field send_ack is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field send_reset is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field destructor is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field syn_ack_timeout is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,662 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field twsk_slab_name is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field twsk_unique is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field twsk_destructor is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,663 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,664 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,665 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field PADDING_0 is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Field ht is a function pointer, using void pointer\n", - "2025-11-25 22:47:33,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.debug_info_gen: Skipping debug info generation for union: union_proto_h\n", - "2025-11-25 22:47:33,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "2025-11-25 22:47:33,666 [WARNING] pythonbpf.vmlinux_parser.ir_gen.ir_generation: Blindly handling non-struct type to avoid type errors in vmlinux IR generation. Possibly a union.\n", - "IOPub message rate exceeded.\n", - "The Jupyter server will temporarily stop sending output\n", - "to the client in order to avoid crashing it.\n", - "To change this limit, set the config variable\n", - "`--ServerApp.iopub_msg_rate_limit`.\n", - "\n", - "Current values:\n", - "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", - "ServerApp.rate_limit_window=3.0 (secs)\n", - "\n" - ] - } - ], + "outputs": [], "source": [ "from vmlinux import struct_request, struct_pt_regs\n", "from pythonbpf import bpf, section, bpfglobal, map, BPF\n", @@ -3085,22 +68,10 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "97040f73-98e0-4993-94c6-125d1b42d931", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'trace_completion': ,\n", - " 'trace_start': }" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "b.load()\n", "b.attach_all()" @@ -3108,7 +79,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "id": "b1bd4f51-fa25-42e1-877c-e48a2605189f", "metadata": {}, "outputs": [], @@ -3118,553 +89,10 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "id": "96b4b59b-b0db-4952-9534-7a714f685089", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " python-313731 [005] d.h21 204630.379933: bpf_trace_printk: 0 262146 1796\n", - "\n", - "\n", - " -0 [005] d.h31 204630.380896: bpf_trace_printk: 4096 169985 657\n", - "\n", - "\n", - " chrome-309323 [007] d.h21 204630.381853: bpf_trace_printk: 0 262146 625\n", - "\n", - "\n", - " chrome-309323 [007] d.h31 204630.381857: bpf_trace_printk: 0 2049 668\n", - "\n", - "\n", - " chrome-309323 [007] d.h31 204630.382567: bpf_trace_printk: 0 262146 618\n", - "\n", - "\n", - " chrome-309323 [007] d.h41 204630.382569: bpf_trace_printk: 0 2049 645\n", - "\n", - "\n", - " -0 [008] d.h31 204630.384378: bpf_trace_printk: 0 262146 651\n", - "\n", - "\n", - " -0 [008] d.h31 204630.385009: bpf_trace_printk: 4096 169985 617\n", - "\n", - "\n", - " chrome-309323 [007] d.h21 204630.385665: bpf_trace_printk: 0 262146 576\n", - "\n", - "\n", - " chrome-309323 [007] d.h31 204630.385667: bpf_trace_printk: 0 2049 603\n", - "\n", - "\n", - " chrome-309323 [007] d.h21 204630.386397: bpf_trace_printk: 0 262146 644\n", - "\n", - "\n", - " chrome-309323 [007] d.h31 204630.386399: bpf_trace_printk: 0 2049 668\n", - "\n", - "\n", - " -0 [008] d.h31 204630.387867: bpf_trace_printk: 0 262146 655\n", - "\n", - "\n", - " -0 [008] d.h31 204630.388653: bpf_trace_printk: 4096 169985 625\n", - "\n", - "\n", - " chrome-309323 [007] d.h21 204630.389468: bpf_trace_printk: 0 262146 621\n", - "\n", - "\n", - " chrome-309323 [007] d.h31 204630.389469: bpf_trace_printk: 0 2049 647\n", - "\n", - "\n", - " chrome-309323 [007] d.h21 204630.390226: bpf_trace_printk: 0 262146 623\n", - "\n", - "\n", - " chrome-309323 [007] d.h31 204630.390227: bpf_trace_printk: 0 2049 651\n", - "\n", - "\n", - " -0 [014] d.h31 204632.092137: bpf_trace_printk: 0 262146 882\n", - "\n", - "\n", - " WebRTC_W_and_N-301480 [014] d.h21 204632.094329: bpf_trace_printk: 0 262146 2097\n", - "\n", - "\n", - " WebRTC_W_and_N-301480 [014] d.h31 204632.094336: bpf_trace_printk: 0 2049 2146\n", - "\n", - "\n", - " -0 [014] d.h31 204632.095107: bpf_trace_printk: 0 262146 693\n", - "\n", - "\n", - " -0 [014] d.h41 204632.095113: bpf_trace_printk: 0 2049 739\n", - "\n", - "\n", - " -0 [005] d.h31 204632.096109: bpf_trace_printk: 0 262146 754\n", - "\n", - "\n", - " -0 [005] d.h31 204632.098648: bpf_trace_printk: 4096 169985 2455\n", - "\n", - "\n", - " -0 [005] d.h31 204632.099476: bpf_trace_printk: 0 262146 579\n", - "\n", - "\n", - " -0 [005] d.h31 204632.099912: bpf_trace_printk: 4096 169985 383\n", - "\n", - "\n", - " -0 [005] d.h31 204632.100516: bpf_trace_printk: 0 262146 407\n", - "\n", - "\n", - " -0 [005] d.h31 204632.100983: bpf_trace_printk: 4096 169985 383\n", - "\n", - "\n", - " -0 [014] dNh31 204632.101532: bpf_trace_printk: 0 262146 398\n", - "\n", - "\n", - " -0 [014] dNh41 204632.101536: bpf_trace_printk: 0 2049 440\n", - "\n", - "\n", - " -0 [014] d.h31 204632.103801: bpf_trace_printk: 0 262146 2121\n", - "\n", - "\n", - " -0 [001] d.h31 204632.103802: bpf_trace_printk: 0 262146 579\n", - "\n", - "\n", - " -0 [001] d.h41 204632.103818: bpf_trace_printk: 0 2049 8133\n", - "\n", - "\n", - " -0 [014] d.h41 204632.103818: bpf_trace_printk: 0 2049 2201\n", - "\n", - "\n", - " -0 [014] d.h31 204632.104286: bpf_trace_printk: 0 262146 407\n", - "\n", - "\n", - " -0 [014] d.h41 204632.104289: bpf_trace_printk: 0 2049 435\n", - "\n", - "\n", - " DefaultDispatch-313174 [017] d.h21 204632.104677: bpf_trace_printk: 0 262146 511\n", - "\n", - "\n", - " -0 [007] d.h31 204632.105153: bpf_trace_printk: 0 262146 756\n", - "\n", - "\n", - " -0 [007] d.h41 204632.105155: bpf_trace_printk: 0 2049 817\n", - "\n", - "\n", - " -0 [017] d.h31 204632.105578: bpf_trace_printk: 4096 169985 876\n", - "\n", - "\n", - " -0 [017] d.h31 204632.106130: bpf_trace_printk: 0 262146 429\n", - "\n", - "\n", - " -0 [017] d.h31 204632.106676: bpf_trace_printk: 4096 169985 517\n", - "\n", - "\n", - " -0 [012] d.h31 204633.062006: bpf_trace_printk: 0 262146 2093\n", - "\n", - "\n", - " -0 [012] d.h31 204633.062689: bpf_trace_printk: 4096 169985 481\n", - "\n", - "\n", - " -0 [008] d.h31 204633.063544: bpf_trace_printk: 0 262146 447\n", - "\n", - "\n", - " -0 [008] d.h41 204633.063560: bpf_trace_printk: 0 2049 578\n", - "\n", - "\n", - " -0 [008] d.h31 204633.064221: bpf_trace_printk: 0 262146 424\n", - "\n", - "\n", - " -0 [008] d.h41 204633.064222: bpf_trace_printk: 0 2049 458\n", - "\n", - "\n", - " -0 [012] d.h31 204633.065117: bpf_trace_printk: 0 262146 437\n", - "\n", - "\n", - " -0 [012] d.h31 204633.065779: bpf_trace_printk: 4096 169985 486\n", - "\n", - "\n", - " -0 [012] d.h31 204634.170064: bpf_trace_printk: 0 262146 2141\n", - "\n", - "\n", - " -0 [012] d.h31 204634.170809: bpf_trace_printk: 4096 169985 646\n", - "\n", - "\n", - " -0 [005] d.h31 204639.221416: bpf_trace_printk: 0 262146 934\n", - "\n", - "\n", - " -0 [005] d.h31 204639.222013: bpf_trace_printk: 4096 169985 558\n", - "\n", - "\n", - " -0 [005] d.h31 204641.899152: bpf_trace_printk: 0 262146 959\n", - "\n", - "\n", - " -0 [005] d.h31 204641.899832: bpf_trace_printk: 4096 169985 551\n", - "\n", - "\n", - " -0 [005] d.h31 204644.109882: bpf_trace_printk: 0 262146 2270\n", - "\n", - "\n", - " -0 [005] d.h31 204644.110651: bpf_trace_printk: 4096 169985 651\n", - "\n", - "\n", - " -0 [003] d.h31 204644.111707: bpf_trace_printk: 0 262146 682\n", - "\n", - "\n", - " -0 [003] d.h41 204644.111722: bpf_trace_printk: 0 2049 849\n", - "\n", - "\n", - " -0 [015] d.h31 204644.112611: bpf_trace_printk: 0 262146 748\n", - "\n", - "\n", - " -0 [015] d.h41 204644.112621: bpf_trace_printk: 0 2049 840\n", - "\n", - "\n", - " -0 [005] d.h31 204644.119855: bpf_trace_printk: 0 262146 1888\n", - "\n", - "\n", - " -0 [005] d.h31 204644.120517: bpf_trace_printk: 4096 169985 524\n", - "\n", - "\n", - " -0 [005] d.h31 204645.156460: bpf_trace_printk: 0 262146 1726\n", - "\n", - "\n", - " -0 [005] d.h31 204645.157061: bpf_trace_printk: 4096 169985 560\n", - "\n", - "\n", - " -0 [016] d.h31 204645.158031: bpf_trace_printk: 0 262146 589\n", - "\n", - "\n", - " -0 [016] d.h41 204645.158035: bpf_trace_printk: 0 2049 828\n", - "\n", - "\n", - " -0 [016] d.h31 204645.160579: bpf_trace_printk: 0 262146 2238\n", - "\n", - "\n", - " -0 [016] d.h41 204645.160610: bpf_trace_printk: 0 2049 2412\n", - "\n", - "\n", - " -0 [005] d.h31 204645.161486: bpf_trace_printk: 0 262146 544\n", - "\n", - "\n", - " -0 [005] d.h31 204645.162099: bpf_trace_printk: 4096 169985 519\n", - "\n", - "\n", - " -0 [017] d.h31 204646.854800: bpf_trace_printk: 0 262146 1750\n", - "\n", - "\n", - " -0 [017] d.h31 204646.855556: bpf_trace_printk: 4096 169985 602\n", - "\n", - "\n", - " -0 [018] d.h31 204646.876437: bpf_trace_printk: 0 262146 156\n", - "\n", - "\n", - " -0 [018] d.h41 204646.876442: bpf_trace_printk: 0 2049 25247\n", - "\n", - "\n", - " -0 [013] d.h31 204646.877219: bpf_trace_printk: 0 262146 651\n", - "\n", - "\n", - " -0 [013] d.h31 204646.878152: bpf_trace_printk: 0 262146 779\n", - "\n", - "\n", - " -0 [013] d.h41 204646.878157: bpf_trace_printk: 0 2049 828\n", - "\n", - "\n", - " -0 [001] d.h31 204646.879175: bpf_trace_printk: 0 262146 674\n", - "\n", - "\n", - " -0 [001] d.h31 204646.879836: bpf_trace_printk: 4096 169985 627\n", - "\n", - "\n", - " -0 [001] d.h31 204652.233613: bpf_trace_printk: 0 262146 1653\n", - "\n", - "\n", - " -0 [001] d.h31 204652.234405: bpf_trace_printk: 4096 169985 692\n", - "\n", - "\n", - " -0 [001] d.h31 204657.521565: bpf_trace_printk: 0 262146 2174\n", - "\n", - "\n", - " -0 [001] d.h31 204657.522485: bpf_trace_printk: 4096 169985 660\n", - "\n", - "\n", - " -0 [001] d.h31 204659.657639: bpf_trace_printk: 0 262146 1486\n", - "\n", - "\n", - " -0 [001] d.h31 204659.658268: bpf_trace_printk: 4096 169985 559\n", - "\n", - "\n", - " -0 [005] d.h31 204659.659313: bpf_trace_printk: 0 262146 692\n", - "\n", - "\n", - " -0 [005] d.h41 204659.659332: bpf_trace_printk: 0 2049 860\n", - "\n", - "\n", - " -0 [005] d.h31 204659.660204: bpf_trace_printk: 0 262146 541\n", - "\n", - "\n", - " -0 [005] d.h41 204659.660211: bpf_trace_printk: 0 2049 626\n", - "\n", - "\n", - " -0 [001] d.h31 204659.661396: bpf_trace_printk: 0 262146 633\n", - "\n", - "\n", - " -0 [001] d.h31 204659.662009: bpf_trace_printk: 4096 169985 558\n", - "\n", - "\n", - " -0 [001] d.h31 204663.173270: bpf_trace_printk: 0 262146 2114\n", - "\n", - "\n", - " -0 [001] d.h31 204663.174069: bpf_trace_printk: 4096 169985 638\n", - "\n", - "\n", - " -0 [012] d.h31 204663.175273: bpf_trace_printk: 0 262146 683\n", - "\n", - "\n", - " -0 [012] d.h41 204663.175299: bpf_trace_printk: 0 2049 819\n", - "\n", - "\n", - " -0 [012] d.h31 204663.176090: bpf_trace_printk: 0 262146 627\n", - "\n", - "\n", - " -0 [012] d.h41 204663.176093: bpf_trace_printk: 0 2049 689\n", - "\n", - "\n", - " -0 [001] d.h31 204663.177187: bpf_trace_printk: 0 262146 695\n", - "\n", - "\n", - " -0 [001] d.h31 204663.177906: bpf_trace_printk: 4096 169985 655\n", - "\n", - "\n", - " ksoftirqd/12-54 [012] ..s21 204665.549180: bpf_trace_printk: 1024 2048 26\n", - "\n", - "\n", - " ksoftirqd/12-54 [012] ..s21 204665.549213: bpf_trace_printk: 6144 2048 7\n", - "\n", - "\n", - " ksoftirqd/12-54 [012] ..s21 204665.550284: bpf_trace_printk: 120832 2048 1027\n", - "\n", - "\n", - " ksoftirqd/13-60 [013] ..s21 204665.550710: bpf_trace_printk: 117760 2048 34\n", - "\n", - "\n", - " ksoftirqd/13-60 [013] ..s21 204665.552542: bpf_trace_printk: 1024 2048 116\n", - "\n", - "\n", - " ksoftirqd/13-60 [013] ..s21 204665.552570: bpf_trace_printk: 5120 2048 11\n", - "\n", - "\n", - " -0 [001] d.h31 204667.794434: bpf_trace_printk: 0 262146 2105\n", - "\n", - "\n", - " -0 [001] d.h31 204667.795234: bpf_trace_printk: 4096 169985 634\n", - "\n", - "\n", - " C2 CompilerThre-6842 [001] d.h21 204672.857475: bpf_trace_printk: 0 262146 2695\n", - "\n", - "\n", - " C2 CompilerThre-6842 [001] d.h21 204672.859924: bpf_trace_printk: 4096 169985 2422\n", - "\n", - "\n", - " -0 [001] d.h31 204680.014943: bpf_trace_printk: 0 262146 2391\n", - "\n", - "\n", - " -0 [001] d.h31 204680.017089: bpf_trace_printk: 4096 169985 1860\n", - "\n", - "\n", - " -0 [001] d.h31 204681.190068: bpf_trace_printk: 0 262146 734\n", - "\n", - "\n", - " -0 [001] d.h31 204681.191001: bpf_trace_printk: 4096 169985 675\n", - "\n", - "\n", - " -0 [014] d.h31 204681.192046: bpf_trace_printk: 0 262146 683\n", - "\n", - "\n", - " -0 [014] d.h41 204681.192072: bpf_trace_printk: 0 2049 846\n", - "\n", - "\n", - " -0 [014] d.h31 204681.194448: bpf_trace_printk: 0 262146 1916\n", - "\n", - "\n", - " -0 [014] d.h41 204681.194477: bpf_trace_printk: 0 2049 2073\n", - "\n", - "\n", - " -0 [001] d.h31 204681.195637: bpf_trace_printk: 0 262146 717\n", - "\n", - "\n", - " -0 [001] d.h31 204681.196531: bpf_trace_printk: 4096 169985 639\n", - "\n", - "\n", - " -0 [001] d.h31 204686.817101: bpf_trace_printk: 0 262146 783\n", - "\n", - "\n", - " -0 [001] d.h31 204686.819532: bpf_trace_printk: 4096 169985 2291\n", - "\n", - "\n", - " -0 [017] d.h31 204686.846594: bpf_trace_printk: 0 262146 151\n", - "\n", - "\n", - " -0 [017] d.h41 204686.846599: bpf_trace_printk: 0 2049 4275215\n", - "\n", - "\n", - " -0 [017] d.h31 204686.847147: bpf_trace_printk: 0 262146 423\n", - "\n", - "\n", - " -0 [017] d.h41 204686.847154: bpf_trace_printk: 0 2049 519\n", - "\n", - "\n", - " -0 [017] d.h31 204686.847854: bpf_trace_printk: 0 262146 507\n", - "\n", - "\n", - " -0 [017] d.h41 204686.847879: bpf_trace_printk: 0 2049 632\n", - "\n", - "\n", - " -0 [001] d.h31 204686.848958: bpf_trace_printk: 0 262146 478\n", - "\n", - "\n", - " -0 [001] d.h31 204686.849609: bpf_trace_printk: 4096 169985 418\n", - "\n", - "\n", - " -0 [001] d.h31 204686.852532: bpf_trace_printk: 0 262146 387\n", - "\n", - "\n", - " -0 [001] d.h31 204686.853087: bpf_trace_printk: 4096 169985 480\n", - "\n", - "\n", - " -0 [003] d.h31 204686.853622: bpf_trace_printk: 0 262146 420\n", - "\n", - "\n", - " -0 [003] d.h41 204686.853624: bpf_trace_printk: 0 2049 453\n", - "\n", - "\n", - " -0 [003] d.h31 204686.854201: bpf_trace_printk: 0 262146 453\n", - "\n", - "\n", - " -0 [003] d.h41 204686.854210: bpf_trace_printk: 0 2049 555\n", - "\n", - "\n", - " -0 [001] d.h31 204686.854925: bpf_trace_printk: 0 262146 385\n", - "\n", - "\n", - " -0 [001] d.h31 204686.855380: bpf_trace_printk: 4096 169985 360\n", - "\n", - "\n", - " -0 [001] d.h31 204692.235433: bpf_trace_printk: 0 262146 2357\n", - "\n", - "\n", - " -0 [001] d.h31 204692.236342: bpf_trace_printk: 4096 169985 679\n", - "\n", - "\n", - " -0 [001] d.h31 204692.764994: bpf_trace_printk: 0 262146 2030\n", - "\n", - "\n", - " -0 [001] d.h31 204692.765798: bpf_trace_printk: 4096 169985 575\n", - "\n", - "\n", - " -0 [001] d.h31 204692.767170: bpf_trace_printk: 0 262146 639\n", - "\n", - "\n", - " -0 [001] d.h31 204692.767792: bpf_trace_printk: 4096 169985 575\n", - "\n", - "\n", - " -0 [001] d.h31 204692.769333: bpf_trace_printk: 0 262146 785\n", - "\n", - "\n", - " -0 [001] d.h31 204692.769987: bpf_trace_printk: 4096 169985 600\n", - "\n", - "\n", - " -0 [001] d.h31 204692.772544: bpf_trace_printk: 0 262146 1935\n", - "\n", - "\n", - " -0 [001] d.h31 204692.773143: bpf_trace_printk: 4096 169985 561\n", - "\n", - "\n", - " -0 [001] d.h31 204692.774539: bpf_trace_printk: 0 262146 667\n", - "\n", - "\n", - " -0 [001] d.h31 204692.775164: bpf_trace_printk: 4096 169985 615\n", - "\n", - "\n", - " -0 [001] d.h31 204692.777342: bpf_trace_printk: 0 262146 2111\n", - "\n", - "\n", - " -0 [001] d.h31 204692.777994: bpf_trace_printk: 4096 169985 618\n", - "\n", - "\n", - " -0 [014] d.H31 204692.779553: bpf_trace_printk: 0 262146 735\n", - "\n", - "\n", - " -0 [014] d.h31 204692.780324: bpf_trace_printk: 4096 169985 722\n", - "\n", - "\n", - " -0 [014] d.h31 204693.374292: bpf_trace_printk: 0 262146 1039\n", - "\n", - "\n", - " -0 [014] d.h31 204693.375058: bpf_trace_printk: 4096 169985 695\n", - "\n", - "\n", - " -0 [014] d.h31 204693.375936: bpf_trace_printk: 0 262146 677\n", - "\n", - "\n", - " -0 [014] d.h41 204693.375938: bpf_trace_printk: 0 2049 786\n", - "\n", - "\n", - " -0 [014] d.h31 204693.376951: bpf_trace_printk: 0 262146 706\n", - "\n", - "\n", - " -0 [014] d.h41 204693.376955: bpf_trace_printk: 0 2049 837\n", - "\n", - "\n", - " -0 [014] d.h31 204693.379376: bpf_trace_printk: 0 262146 2143\n", - "\n", - "\n", - " -0 [014] d.h31 204693.380254: bpf_trace_printk: 4096 169985 771\n", - "\n", - "\n", - " -0 [005] d.h31 204698.859899: bpf_trace_printk: 0 262146 579\n", - "\n", - "\n", - " -0 [005] d.h31 204698.860426: bpf_trace_printk: 4096 169985 498\n", - "\n", - "\n", - " -0 [005] d.h31 204704.078938: bpf_trace_printk: 0 262146 2058\n", - "\n", - "\n", - " -0 [005] d.h31 204704.079625: bpf_trace_printk: 4096 169985 547\n", - "\n", - "\n", - " -0 [005] d.h31 204709.223407: bpf_trace_printk: 0 262146 1736\n", - "\n", - "\n", - " -0 [005] dNh31 204709.224089: bpf_trace_printk: 4096 169985 649\n", - "\n", - "\n", - " -0 [005] d.h31 204713.830976: bpf_trace_printk: 0 262146 1970\n", - "\n", - "\n", - " -0 [005] dNh31 204713.831712: bpf_trace_printk: 4096 169985 591\n", - "\n", - "\n", - " -0 [015] d.h31 204713.832741: bpf_trace_printk: 0 262146 703\n", - "\n", - "\n", - " -0 [015] d.h41 204713.832768: bpf_trace_printk: 0 2049 851\n", - "\n", - "\n", - " -0 [015] d.h31 204713.833903: bpf_trace_printk: 0 262146 765\n", - "\n", - "\n", - " -0 [015] d.h41 204713.833919: bpf_trace_printk: 0 2049 921\n", - "\n", - "\n", - " -0 [006] d.h31 204713.834982: bpf_trace_printk: 0 262146 635\n", - "\n", - "\n", - " -0 [006] d.h31 204713.835764: bpf_trace_printk: 4096 169985 617\n", - "\n", - "\n", - "Tracing stopped.\n", - "None\n" - ] - } - ], + "outputs": [], "source": [ "trace_pipe()" ] From a8595ff1d2a3063981a6a58eb781380342317a12 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Thu, 27 Nov 2025 14:02:00 +0530 Subject: [PATCH 08/10] feat: allocate tmp variable for pointer to vmlinux struct field access. --- pythonbpf/allocation_pass.py | 20 ++++++++++--- .../vmlinux_parser/vmlinux_exports_handler.py | 29 +++++++++++++++---- tests/failing_tests/xdp/xdp_test_1.py | 15 ++++++---- 3 files changed, 48 insertions(+), 16 deletions(-) diff --git a/pythonbpf/allocation_pass.py b/pythonbpf/allocation_pass.py index 9099ced..db6f0ba 100644 --- a/pythonbpf/allocation_pass.py +++ b/pythonbpf/allocation_pass.py @@ -384,6 +384,7 @@ def _allocate_for_attribute(builder, var_name, rval, local_sym_tab, structs_sym_ f"Could not determine size for ctypes field {field_name}: {e}" ) actual_ir_type = ir.IntType(64) + field_size_bits = 64 # Check if it's a nested vmlinux struct or complex type elif field.type.__module__ == "vmlinux": @@ -392,23 +393,34 @@ def _allocate_for_attribute(builder, var_name, rval, local_sym_tab, structs_sym_ field.ctype_complex_type, ctypes._Pointer ): actual_ir_type = ir.IntType(64) # Pointer is always 64-bit + field_size_bits = 64 # For embedded structs, this is more complex - might need different handling else: logger.warning( f"Field {field_name} is a nested vmlinux struct, using i64 for now" ) actual_ir_type = ir.IntType(64) + field_size_bits = 64 else: logger.warning( f"Unknown field type module {field.type.__module__} for {field_name}" ) actual_ir_type = ir.IntType(64) + field_size_bits = 64 + + # Pre-allocate the tmp storage used by load_struct_field (so we don't alloca inside handler) + tmp_name = f"{struct_var}_{field_name}_tmp" + tmp_ir_type = ir.IntType(field_size_bits) + tmp_var = builder.alloca(tmp_ir_type, name=tmp_name) + tmp_var.align = tmp_ir_type.width // 8 + local_sym_tab[tmp_name] = LocalSymbol(tmp_var, tmp_ir_type) + logger.info( + f"Pre-allocated temp {tmp_name} (i{field_size_bits}) for vmlinux field read {vmlinux_struct_name}.{field_name}" + ) - # Allocate with the actual IR type + # Allocate with the actual IR type for the destination var var = _allocate_with_type(builder, var_name, actual_ir_type) - local_sym_tab[var_name] = LocalSymbol( - var, actual_ir_type, field - ) # <-- Store Field metadata + local_sym_tab[var_name] = LocalSymbol(var, actual_ir_type, field) logger.info( f"Pre-allocated {var_name} as {actual_ir_type} from vmlinux struct {vmlinux_struct_name}.{field_name}" diff --git a/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py b/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py index e5bc153..bba0cd3 100644 --- a/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py +++ b/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py @@ -77,7 +77,7 @@ def handle_vmlinux_enum(self, name): return None def get_vmlinux_enum_value(self, name): - """Handle vmlinux enum constants by returning LLVM IR constants""" + """Handle vmlinux.enum constants by returning LLVM IR constants""" if self.is_vmlinux_enum(name): value = self.vmlinux_symtab[name].value logger.info(f"The value of vmlinux enum {name} = {value}") @@ -119,6 +119,9 @@ def handle_vmlinux_struct_field( # Load the struct pointer from the local variable struct_ptr = builder.load(var_info.var) + # Determine the preallocated tmp name that assignment pass should have created + tmp_name = f"{struct_var_name}_{field_name}_tmp" + # Use bpf_probe_read_kernel for non-context struct field access field_value = self.load_struct_field( builder, @@ -127,6 +130,7 @@ def handle_vmlinux_struct_field( field_data, struct_name, local_sym_tab, + tmp_name, ) # Return field value and field type return field_value, field_data @@ -141,6 +145,7 @@ def load_struct_field( field_data, struct_name=None, local_sym_tab=None, + tmp_name: str = None, ): """ Generate LLVM IR to load a field from a regular (non-context) struct using bpf_probe_read_kernel. @@ -151,6 +156,8 @@ def load_struct_field( offset_global: Global variable containing the field offset (i64) field_data: contains data about the field struct_name: Name of the struct being accessed (optional) + local_sym_tab: symbol table (optional) - used to locate preallocated tmp storage + tmp_name: name of the preallocated temporary storage to use (preferred) Returns: The loaded value """ @@ -213,10 +220,20 @@ def load_struct_field( else: logger.warning("Complex vmlinux field type, using default 64 bits") - # Allocate local storage for the field value - # TODO: CRITICAL BUG. alloca cannot be used anywhere other than the basic block - local_storage = builder.alloca(ir.IntType(int_width)) - local_storage_i8_ptr = builder.bitcast(local_storage, i8_ptr_type) + # Use preallocated temporary storage if provided by allocation pass + + local_storage_i8_ptr = None + if tmp_name and local_sym_tab and tmp_name in local_sym_tab: + # Expect the tmp to be an alloca created during allocation pass + tmp_alloca = local_sym_tab[tmp_name].var + local_storage_i8_ptr = builder.bitcast(tmp_alloca, i8_ptr_type) + else: + # Fallback: allocate inline (not ideal, but preserves behavior) + local_storage = builder.alloca(ir.IntType(int_width)) + local_storage_i8_ptr = builder.bitcast(local_storage, i8_ptr_type) + logger.warning( + f"Temp storage '{tmp_name}' not found. Allocating inline" + ) # Use bpf_probe_read_kernel to safely read the field # This generates: @@ -230,7 +247,7 @@ def load_struct_field( ) # Load the value from local storage - value = builder.load(local_storage) + value = builder.load(builder.bitcast(local_storage_i8_ptr, ir.PointerType(ir.IntType(int_width)))) # Zero-extend i32 to i64 if needed if needs_zext: diff --git a/tests/failing_tests/xdp/xdp_test_1.py b/tests/failing_tests/xdp/xdp_test_1.py index bda7664..cdd3dca 100644 --- a/tests/failing_tests/xdp/xdp_test_1.py +++ b/tests/failing_tests/xdp/xdp_test_1.py @@ -26,15 +26,18 @@ class iphdr: def ip_detector(ctx: struct_xdp_md) -> c_int64: data = ctx.data data_end = ctx.data_end - eth = struct_ethhdr(ctx.data) - nh = ctx.data + 14 + if data + 14 > data_end: + return c_int64(XDP_DROP) + + eth = struct_ethhdr(data) + nh = data + 14 if nh + 20 > data_end: return c_int64(XDP_DROP) + iph = iphdr(nh) - h_proto = eth.h_proto - h_proto_ext = c_int64(h_proto) - ipv4 = iph.saddr - print(f"ipaddress: {ipv4}") + + print(f"ipaddress: {iph.saddr}") + return c_int64(XDP_PASS) From f135cdbcc0c7653cf47e6c770215881fd27ed315 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Thu, 27 Nov 2025 14:03:12 +0530 Subject: [PATCH 09/10] format chore --- pythonbpf/vmlinux_parser/vmlinux_exports_handler.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py b/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py index bba0cd3..3ab07cb 100644 --- a/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py +++ b/pythonbpf/vmlinux_parser/vmlinux_exports_handler.py @@ -145,7 +145,7 @@ def load_struct_field( field_data, struct_name=None, local_sym_tab=None, - tmp_name: str = None, + tmp_name: str | None = None, ): """ Generate LLVM IR to load a field from a regular (non-context) struct using bpf_probe_read_kernel. @@ -231,9 +231,7 @@ def load_struct_field( # Fallback: allocate inline (not ideal, but preserves behavior) local_storage = builder.alloca(ir.IntType(int_width)) local_storage_i8_ptr = builder.bitcast(local_storage, i8_ptr_type) - logger.warning( - f"Temp storage '{tmp_name}' not found. Allocating inline" - ) + logger.warning(f"Temp storage '{tmp_name}' not found. Allocating inline") # Use bpf_probe_read_kernel to safely read the field # This generates: @@ -247,7 +245,9 @@ def load_struct_field( ) # Load the value from local storage - value = builder.load(builder.bitcast(local_storage_i8_ptr, ir.PointerType(ir.IntType(int_width)))) + value = builder.load( + builder.bitcast(local_storage_i8_ptr, ir.PointerType(ir.IntType(int_width))) + ) # Zero-extend i32 to i64 if needed if needs_zext: From de8c486461b012465baf6dbbe1179916b5e81956 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Thu, 27 Nov 2025 22:59:34 +0530 Subject: [PATCH 10/10] fix: remove deref_to_depth on single depth pointers --- pythonbpf/expr/expr_pass.py | 6 ++- tests/c-form/xdp_test.bpf.c | 42 +++++++++---------- tests/failing_tests/xdp/xdp_test_1.py | 27 +++++------- .../passing_tests/assign/ptr_to_char_array.py | 5 ++- 4 files changed, 40 insertions(+), 40 deletions(-) diff --git a/pythonbpf/expr/expr_pass.py b/pythonbpf/expr/expr_pass.py index d741459..9f3bfa4 100644 --- a/pythonbpf/expr/expr_pass.py +++ b/pythonbpf/expr/expr_pass.py @@ -241,7 +241,11 @@ def get_operand_value( var_type = var.type base_type, depth = get_base_type_and_depth(var_type) logger.info(f"var is {var}, base_type is {base_type}, depth is {depth}") - val = deref_to_depth(func, builder, var, depth) + if depth == 1: + val = builder.load(var) + return val + else: + val = deref_to_depth(func, builder, var, depth) return val else: # Check if it's a vmlinux enum/constant diff --git a/tests/c-form/xdp_test.bpf.c b/tests/c-form/xdp_test.bpf.c index 0e90ce1..e553c37 100644 --- a/tests/c-form/xdp_test.bpf.c +++ b/tests/c-form/xdp_test.bpf.c @@ -1,38 +1,36 @@ +#include "vmlinux.h" +#include #include #include #include -#include struct fake_iphdr { - unsigned short useless; - unsigned short tot_len; - unsigned short id; - unsigned short frag_off; - unsigned char ttl; - unsigned char protocol; - unsigned short check; - unsigned int saddr; - unsigned int daddr; + unsigned short useless; + unsigned short tot_len; + unsigned short id; + unsigned short frag_off; + unsigned char ttl; + unsigned char protocol; + unsigned short check; + unsigned int saddr; + unsigned int daddr; }; SEC("xdp") -int xdp_prog(struct xdp_md *ctx) -{ - void *data_end = (void *)(long)ctx->data_end; - void *data = (void *)(long)ctx->data; +int xdp_prog(struct xdp_md *ctx) { + unsigned long data = ctx->data; + unsigned long data_end = ctx->data_end; - struct ethhdr *eth = data; - if ((void *)(eth + 1) > data_end) - return XDP_ABORTED; - if (eth->h_proto != __constant_htons(ETH_P_IP)) - return XDP_PASS; + if (data + sizeof(struct ethhdr) + sizeof(struct fake_iphdr) <= data_end) { + struct fake_iphdr *iph = (void *)data + sizeof(struct ethhdr); - struct fake_iphdr *iph = (struct fake_iphdr *)(eth + 1); - if ((void *)(iph + 1) > data_end) - return XDP_ABORTED; bpf_printk("%d", iph->saddr); return XDP_PASS; + } else { + return XDP_ABORTED; + } + struct task_struct * a = btf_bpf_get_current_task_btf(); } char _license[] SEC("license") = "GPL"; diff --git a/tests/failing_tests/xdp/xdp_test_1.py b/tests/failing_tests/xdp/xdp_test_1.py index cdd3dca..302a617 100644 --- a/tests/failing_tests/xdp/xdp_test_1.py +++ b/tests/failing_tests/xdp/xdp_test_1.py @@ -1,10 +1,9 @@ -from vmlinux import XDP_PASS, XDP_DROP +from vmlinux import XDP_PASS, XDP_ABORTED from vmlinux import ( struct_xdp_md, - struct_ethhdr, ) from pythonbpf import bpf, section, bpfglobal, compile, compile_to_ir, struct -from ctypes import c_int64, c_ubyte, c_ushort, c_uint32 +from ctypes import c_int64, c_ubyte, c_ushort, c_uint32, c_void_p @bpf @@ -24,19 +23,15 @@ class iphdr: @bpf @section("xdp") def ip_detector(ctx: struct_xdp_md) -> c_int64: - data = ctx.data - data_end = ctx.data_end - if data + 14 > data_end: - return c_int64(XDP_DROP) - - eth = struct_ethhdr(data) - nh = data + 14 - if nh + 20 > data_end: - return c_int64(XDP_DROP) - - iph = iphdr(nh) - - print(f"ipaddress: {iph.saddr}") + data = c_void_p(ctx.data) + data_end = c_void_p(ctx.data_end) + if data + 34 < data_end: + hdr = data + 14 + iph = iphdr(hdr) + addr = iph.saddr + print(f"ipaddress: {addr}") + else: + return c_int64(XDP_ABORTED) return c_int64(XDP_PASS) diff --git a/tests/passing_tests/assign/ptr_to_char_array.py b/tests/passing_tests/assign/ptr_to_char_array.py index 6a090be..90daae7 100644 --- a/tests/passing_tests/assign/ptr_to_char_array.py +++ b/tests/passing_tests/assign/ptr_to_char_array.py @@ -1,4 +1,4 @@ -from pythonbpf import bpf, struct, section, bpfglobal +from pythonbpf import bpf, struct, section, bpfglobal, compile from pythonbpf.helper import comm from ctypes import c_void_p, c_int64 @@ -26,3 +26,6 @@ def hello(ctx: c_void_p) -> c_int64: @bpfglobal def LICENSE() -> str: return "GPL" + + +compile()