Searched refs:buckets_num (Results 1 – 1 of 1) sorted by relevance
526 u32 buckets_num; member540 return &htab->buckets[hash & (htab->buckets_num - 1)]; in sock_hash_select_bucket()777 i = hash & (htab->buckets_num - 1); in sock_hash_get_next_key()780 for (; i < htab->buckets_num; i++) { in sock_hash_get_next_key()815 htab->buckets_num = roundup_pow_of_two(htab->map.max_entries); in sock_hash_alloc()818 if (htab->buckets_num == 0 || in sock_hash_alloc()819 htab->buckets_num > U32_MAX / sizeof(struct bpf_htab_bucket)) { in sock_hash_alloc()824 cost = (u64) htab->buckets_num * sizeof(struct bpf_htab_bucket) + in sock_hash_alloc()831 htab->buckets = bpf_map_area_alloc(htab->buckets_num * in sock_hash_alloc()839 for (i = 0; i < htab->buckets_num; i++) { in sock_hash_alloc()[all …]