Lines Matching defs:arg_info
168 * arg_info->info will be the list of struct bpf_ctx_arg_aux if success. If
175 struct bpf_struct_ops_arg_info *arg_info)
283 arg_info->info = info_buf;
284 arg_info->cnt = info_cnt;
297 /* Clean up the arg_info in a struct bpf_struct_ops_desc. */
300 struct bpf_struct_ops_arg_info *arg_info;
303 arg_info = st_ops_desc->arg_info;
305 kfree(arg_info[i].info);
307 kfree(arg_info);
336 struct bpf_struct_ops_arg_info *arg_info;
381 arg_info = kcalloc(btf_type_vlen(t), sizeof(*arg_info),
383 if (!arg_info)
386 st_ops_desc->arg_info = arg_info;
452 arg_info + i);