Fix imports and type issues for bpf_probe_read

This commit is contained in:
Pragyansh Chaturvedi
2025-11-01 13:50:23 +05:30
parent 2257c175ed
commit ec2ea835e5
3 changed files with 30 additions and 17 deletions

View File

@ -1,7 +1,17 @@
from .helper_registry import HelperHandlerRegistry
from .helper_utils import reset_scratch_pool
from .bpf_helper_handler import handle_helper_call, emit_probe_read_kernel_str_call
from .helpers import ktime, pid, deref, comm, probe_read_str, random, XDP_DROP, XDP_PASS
from .helpers import (
ktime,
pid,
deref,
comm,
probe_read_str,
random,
probe_read,
XDP_DROP,
XDP_PASS,
)
# Register the helper handler with expr module
@ -66,6 +76,7 @@ __all__ = [
"comm",
"probe_read_str",
"random",
"probe_read",
"XDP_DROP",
"XDP_PASS",
]