fix errors. Does not support union name resolution yet.

This commit is contained in:
2025-10-16 18:21:14 +05:30
parent 5413cc793b
commit 041e538b53
2 changed files with 22 additions and 17 deletions

View File

@ -49,6 +49,9 @@ class IRGenerator:
try: try:
# Process all dependencies first # Process all dependencies first
if struct.depends_on is None:
pass
else:
for dependency in struct.depends_on: for dependency in struct.depends_on:
if dependency not in self.generated: if dependency not in self.generated:
# Check if dependency exists in handler # Check if dependency exists in handler
@ -152,6 +155,7 @@ class IRGenerator:
) )
return name return name
else: else:
print(self.handler[struct.name])
raise TypeError( raise TypeError(
"Name generation cannot occur due to type name not starting with struct" "Name generation cannot occur due to type name not starting with struct"
) )

View File

@ -2,12 +2,13 @@ from pythonbpf import bpf, map, section, bpfglobal, compile_to_ir
from pythonbpf.maps import HashMap from pythonbpf.maps import HashMap
from pythonbpf.helper import XDP_PASS from pythonbpf.helper import XDP_PASS
from vmlinux import TASK_COMM_LEN # noqa: F401 from vmlinux import TASK_COMM_LEN # noqa: F401
from vmlinux import struct_trace_event_raw_sys_enter # noqa: F401 # from vmlinux import struct_qspinlock_0_1
from vmlinux import struct_posix_cputimers # noqa: F401 # from vmlinux import struct_trace_event_raw_sys_enter # noqa: F401
# from vmlinux import struct_posix_cputimers # noqa: F401
from vmlinux import struct_xdp_md from vmlinux import struct_xdp_md
# from vmlinux import struct_trace_event_raw_sys_enter # noqa: F401 # from vmlinux import struct_trace_event_raw_sys_enter # noqa: F401
from vmlinux import struct_ring_buffer_per_cpu # noqa: F401 # from vmlinux import struct_ring_buffer_per_cpu # noqa: F401
from vmlinux import struct_request
from ctypes import c_int64 from ctypes import c_int64
# Instructions to how to run this program # Instructions to how to run this program