函数逻辑报告 |
Source Code:kernel\bpf\bpf_lru_list.c |
Create Date:2022-07-27 14:29:35 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
首页 | 函数Tree |
注解内核,赢得工具 | 下载SCCT | English |
函数名称:bpf_lru_init
函数原型:int bpf_lru_init(struct bpf_lru *lru, bool percpu, u32 hash_offset, del_from_htab_func del_from_htab, void *del_arg)
返回类型:int
参数:
类型 | 参数 | 名称 |
---|---|---|
struct bpf_lru * | lru | |
bool | percpu | |
u32 | hash_offset | |
del_from_htab_func | del_from_htab | |
void * | del_arg |
650 | 如果percpu则 |
651 | percpu_lru等于alloc_percpu(structbpf_lru_list) |
652 | 如果非percpu_lru则返回:负ENOMEM |
658 | l等于per_cpu_ptr(percpu_lru, cpu) |
659 | bpf_lru_list_init(l) |
661 | nr_scans等于PERCPU_NR_SCANS |
662 | 否则 |
663 | clru等于common_lru |
665 | local_list等于alloc_percpu(structbpf_lru_locallist) |
666 | 如果非local_list则返回:负ENOMEM |
672 | loc_l等于per_cpu_ptr(local_list, cpu) |
673 | bpf_lru_locallist_init(loc_l, cpu) |
676 | bpf_lru_list_init( & lru_list) |
677 | nr_scans等于LOCAL_NR_SCANS |
683 | hash_offset等于hash_offset |
685 | 返回:0 |
名称 | 描述 |
---|---|
prealloc_init |
源代码转换工具 开放的插件接口 | X |
---|---|
支持:c/c++/esqlc/java Oracle/Informix/Mysql 插件可实现:逻辑报告 代码生成和批量转换代码 |