Lines Matching refs:head
57 struct hlist_head *head; in find_first_fprobe_node() local
59 head = &fprobe_ip_table[hash_ptr((void *)ip, FPROBE_IP_HASH_BITS)]; in find_first_fprobe_node()
60 hlist_for_each_entry_rcu(node, head, hlist, in find_first_fprobe_node()
74 struct hlist_head *head; in insert_fprobe_node() local
83 head = &fprobe_ip_table[hash_ptr((void *)ip, FPROBE_IP_HASH_BITS)]; in insert_fprobe_node()
84 hlist_add_head_rcu(&node->hlist, head); in insert_fprobe_node()
103 struct hlist_head *head; in is_fprobe_still_exist() local
106 head = &fprobe_table[hash_ptr(fp, FPROBE_HASH_BITS)]; in is_fprobe_still_exist()
107 hlist_for_each_entry_rcu(fph, head, hlist, in is_fprobe_still_exist()
119 struct hlist_head *head; in add_fprobe_hash() local
129 head = &fprobe_table[hash_ptr(fp, FPROBE_HASH_BITS)]; in add_fprobe_hash()
130 hlist_add_head_rcu(&fp->hlist_array->hlist, head); in add_fprobe_hash()
451 static void fprobe_remove_node_in_module(struct module *mod, struct hlist_head *head, in fprobe_remove_node_in_module() argument
457 hlist_for_each_entry_rcu(node, head, hlist, in fprobe_remove_node_in_module()