函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\bpf\verifier.c Create Date:2022-07-27 14:08:57
Last Modify:2022-05-19 20:02:10 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:log_level controls verbosity level of eBPF verifier.* bpf_verifier_log_write() is used to dump the verification trace to the log,* so the user can figure out what's wrong with the program

函数原型:__printf(2, 3) void bpf_verifier_log_write(struct bpf_verifier_env *env, const char *fmt, ...)

返回类型:void

参数:

类型参数名称
struct bpf_verifier_env *env
const char *fmt
294  如果非bpf_verifier_log_needed( & log)则返回
297  va_start(args, fmt)
298  bpf_verifier_vlog( & log, fmt, args)
299  va_end(args)