函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\bpf\btf.c Create Date:2022-07-27 14:37:32
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:btf_func_check

函数原型:static int btf_func_check(struct btf_verifier_env *env, const struct btf_type *t)

返回类型:int

参数:

类型参数名称
struct btf_verifier_env *env
const struct btf_type *t
2961  btf等于btf
2962  proto_type等于btf_type_by_id(btf, type)
2964  如果非proto_type或非btf_type_is_func_proto(proto_type)则
2965  btf_verifier_log_type(env, t, "Invalid type_id")
2966  返回:负EINVAL
2969  args等于proto_type加1
2970  nr_args等于btf_type_vlen(proto_type)
2971 i小于nr_args循环
2972  如果非name_offtype
2973  btf_verifier_log_type(env, t, "Invalid arg#%u", i + 1)
2974  返回:负EINVAL
2978  返回:0
调用者
名称描述
btf_check_all_types