Lines Matching refs:hlist_head
19 struct hlist_head *buckets;
70 htab->n_buckets > U32_MAX / sizeof(struct hlist_head)) in htab_map_alloc()
73 htab->buckets = kmalloc_array(htab->n_buckets, sizeof(struct hlist_head), in htab_map_alloc()
77 htab->buckets = vmalloc(htab->n_buckets * sizeof(struct hlist_head)); in htab_map_alloc()
103 static inline struct hlist_head *select_bucket(struct bpf_htab *htab, u32 hash) in select_bucket()
108 static struct htab_elem *lookup_elem_raw(struct hlist_head *head, u32 hash, in lookup_elem_raw()
124 struct hlist_head *head; in htab_map_lookup_elem()
149 struct hlist_head *head; in htab_map_get_next_key()
209 struct hlist_head *head; in htab_map_update_elem()
282 struct hlist_head *head; in htab_map_delete_elem()
316 struct hlist_head *head = select_bucket(htab, i); in delete_all_elements()