Home
last modified time | relevance | path

Searched refs:buckets_num (Results 1 – 1 of 1) sorted by relevance

/linux/net/core/
A Dsock_map.c824 u32 buckets_num; member
838 return &htab->buckets[hash & (htab->buckets_num - 1)]; in sock_hash_select_bucket()
1043 i = hash & (htab->buckets_num - 1); in sock_hash_get_next_key()
1046 for (; i < htab->buckets_num; i++) { in sock_hash_get_next_key()
1081 htab->buckets_num = roundup_pow_of_two(htab->map.max_entries); in sock_hash_alloc()
1084 if (htab->buckets_num == 0 || in sock_hash_alloc()
1085 htab->buckets_num > U32_MAX / sizeof(struct bpf_shtab_bucket)) { in sock_hash_alloc()
1090 htab->buckets = bpf_map_area_alloc(htab->buckets_num * in sock_hash_alloc()
1098 for (i = 0; i < htab->buckets_num; i++) { in sock_hash_alloc()
1123 for (i = 0; i < htab->buckets_num; i++) { in sock_hash_free()
[all …]

Completed in 7 milliseconds