函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\bpf\syscall.c Create Date:2022-07-27 14:05:50
Last Modify:2022-05-19 18:06:12 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:find_prog_type

函数原型:static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog)

返回类型:int

参数:

类型参数名称
enum bpf_prog_typetype
struct bpf_prog *prog
1294  如果type大于等于ARRAY_SIZE - get the number of elements in array @arr*@arr: array to be sized(bpf_prog_types)则返回:负EINVAL
1296  type等于array_index_nospec - sanitize an array index after a bounds check* For a code sequence like:* if (index < size) {* index = array_index_nospec(index, size);* val = array[index];* }* (type, ARRAY_SIZE - get the number of elements in array @arr*@arr: array to be sized(bpf_prog_types))
1297  ops等于bpf_prog_types[type]
1298  如果非ops则返回:负EINVAL
1301  如果非bpf_prog_is_dev_bound( Auxiliary fields )则ops等于ops
1303  否则ops等于bpf_offload_prog_ops
1305  Type of BPF program 等于type
1306  返回:0
调用者
名称描述
bpf_prog_load