Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\bpf\verifier.c Create Date:2022-07-28 12:55:45
Last Modify:2022-05-19 20:02:10 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name: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

Proto:__printf(2, 3) void bpf_verifier_log_write(struct bpf_verifier_env *env, const char *fmt, ...)

Type:void

Parameter:

TypeParameterName
struct bpf_verifier_env *env
const char *fmt
294  If Not bpf_verifier_log_needed( & log) Then Return
297  va_start(args, fmt)
298  bpf_verifier_vlog( & log, fmt, args)
299  va_end(args)