函数逻辑报告 |
Source Code:kernel\bpf\hashtab.c |
Create Date:2022-07-27 14:26:03 |
Last Modify:2022-05-23 09:15:29 | Copyright©Brick |
首页 | 函数Tree |
注解内核,赢得工具 | 下载SCCT | English |
函数名称:htab_lru_map_update_elem
函数原型:static int htab_lru_map_update_elem(struct bpf_map *map, void *key, void *value, u64 map_flags)
返回类型:int
参数:
类型 | 参数 | 名称 |
---|---|---|
struct bpf_map * | map | |
void * | key | |
void * | value | |
u64 | map_flags |
922 | 如果此条件成立可能性小(为编译器优化)(map_flags > update existing element )则返回:负EINVAL |
926 | WARN_ON_ONCE(!_read_lock_held() - might we be in RCU read-side critical section?* If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an RCU* read-side critical section) |
930 | hash等于htab_map_hash(key, key_size, hashrnd) |
932 | b等于__select_bucket(htab, hash) |
940 | l_new等于prealloc_lru_pop(htab, key, hash) |
946 | raw_spin_lock_irqsave( & lock, flags) |
950 | ret等于check_flags(htab, l_old, map_flags) |
958 | 如果l_old则 |
959 | bpf_lru_node_set_ref( & lru_node) |
962 | ret等于0 |
964 | err : |
965 | raw_spin_unlock_irqrestore( & lock, flags) |
967 | 如果ret则bpf_lru_push_free( & lru, & lru_node) |
969 | 否则如果l_old则bpf_lru_push_free( & lru, & lru_node) |
972 | 返回:ret |
源代码转换工具 开放的插件接口 | X |
---|---|
支持:c/c++/esqlc/java Oracle/Informix/Mysql 插件可实现:逻辑报告 代码生成和批量转换代码 |