float vmlinux_assignments_symtab

This commit is contained in:
2025-10-15 18:19:51 +05:30
parent c499fe7421
commit ce7b170fea
2 changed files with 7 additions and 6 deletions

View File

@ -45,14 +45,14 @@ def processor(source_code, filename, module):
for func_node in bpf_chunks:
logger.info(f"Found BPF function/struct: {func_node.name}")
vmlinux_proc(tree, module)
vmlinux_assignments_symtab = vmlinux_proc(tree, module)
populate_global_symbol_table(tree, module)
license_processing(tree, module)
globals_processing(tree, module)
structs_sym_tab = structs_proc(tree, module, bpf_chunks)
map_sym_tab = maps_proc(tree, module, bpf_chunks)
func_proc(tree, module, bpf_chunks, map_sym_tab, structs_sym_tab)
func_proc(tree, module, bpf_chunks, map_sym_tab, structs_sym_tab, vmlinux_assignments_symtab)
globals_list_creation(tree, module)