mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
Fix calling of _simple_string_print
This commit is contained in:
@ -80,7 +80,7 @@ def bpf_printk_emitter(call, map_ptr, module, builder, func,
|
|||||||
elif isinstance(call.args[0], ast.Constant) and isinstance(call.args[0].value, str):
|
elif isinstance(call.args[0], ast.Constant) and isinstance(call.args[0].value, str):
|
||||||
# TODO: We are onbly supporting single arguments for now.
|
# TODO: We are onbly supporting single arguments for now.
|
||||||
# In case of multiple args, the first one will be taken.
|
# In case of multiple args, the first one will be taken.
|
||||||
args = _simple_string_print(call.args[0], module, builder, func)
|
args = _simple_string_print(call.args[0].value, module, builder, func)
|
||||||
else:
|
else:
|
||||||
raise NotImplementedError(
|
raise NotImplementedError(
|
||||||
"Only simple string literals or f-strings are supported in bpf_printk.")
|
"Only simple string literals or f-strings are supported in bpf_printk.")
|
||||||
|
|||||||
Reference in New Issue
Block a user