Lines Matching refs:head

257 		struct hlist_head *head = flex_array_get(ti->buckets, i);  in table_instance_destroy()  local
262 hlist_for_each_entry_safe(flow, n, head, flow_table.node[ver]) { in table_instance_destroy()
295 struct hlist_head *head; in ovs_flow_tbl_dump_next() local
302 head = flex_array_get(ti->buckets, *bucket); in ovs_flow_tbl_dump_next()
303 hlist_for_each_entry_rcu(flow, head, flow_table.node[ver]) { in ovs_flow_tbl_dump_next()
328 struct hlist_head *head; in table_instance_insert() local
330 head = find_bucket(ti, flow->flow_table.hash); in table_instance_insert()
331 hlist_add_head_rcu(&flow->flow_table.node[ti->node_ver], head); in table_instance_insert()
337 struct hlist_head *head; in ufid_table_instance_insert() local
339 head = find_bucket(ti, flow->ufid_table.hash); in ufid_table_instance_insert()
340 hlist_add_head_rcu(&flow->ufid_table.node[ti->node_ver], head); in ufid_table_instance_insert()
355 struct hlist_head *head; in flow_table_copy_flows() local
357 head = flex_array_get(old->buckets, i); in flow_table_copy_flows()
360 hlist_for_each_entry(flow, head, in flow_table_copy_flows()
364 hlist_for_each_entry(flow, head, in flow_table_copy_flows()
476 struct hlist_head *head; in masked_flow_lookup() local
482 head = find_bucket(ti, hash); in masked_flow_lookup()
483 hlist_for_each_entry_rcu(flow, head, flow_table.node[ti->node_ver]) { in masked_flow_lookup()
561 struct hlist_head *head; in ovs_flow_tbl_lookup_ufid() local
565 head = find_bucket(ti, hash); in ovs_flow_tbl_lookup_ufid()
566 hlist_for_each_entry_rcu(flow, head, ufid_table.node[ti->node_ver]) { in ovs_flow_tbl_lookup_ufid()