Home
last modified time | relevance | path

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

/linux-6.3-rc2/net/core/
A Dsock_map.c839 u32 buckets_num; member
853 return &htab->buckets[hash & (htab->buckets_num - 1)]; in sock_hash_select_bucket()
1058 i = hash & (htab->buckets_num - 1); in sock_hash_get_next_key()
1061 for (; i < htab->buckets_num; i++) { in sock_hash_get_next_key()
1096 htab->buckets_num = roundup_pow_of_two(htab->map.max_entries); in sock_hash_alloc()
1099 if (htab->buckets_num == 0 || in sock_hash_alloc()
1100 htab->buckets_num > U32_MAX / sizeof(struct bpf_shtab_bucket)) { in sock_hash_alloc()
1105 htab->buckets = bpf_map_area_alloc(htab->buckets_num * in sock_hash_alloc()
1113 for (i = 0; i < htab->buckets_num; i++) { in sock_hash_alloc()
1138 for (i = 0; i < htab->buckets_num; i++) { in sock_hash_free()
[all …]

Completed in 6 milliseconds