Lines Matching refs:head

255 		struct hlist_head *head = flex_array_get(ti->buckets, i);  in table_instance_destroy()  local
260 hlist_for_each_entry_safe(flow, n, head, flow_table.node[ver]) { in table_instance_destroy()
293 struct hlist_head *head; in ovs_flow_tbl_dump_next() local
300 head = flex_array_get(ti->buckets, *bucket); in ovs_flow_tbl_dump_next()
301 hlist_for_each_entry_rcu(flow, head, flow_table.node[ver]) { in ovs_flow_tbl_dump_next()
326 struct hlist_head *head; in table_instance_insert() local
328 head = find_bucket(ti, flow->flow_table.hash); in table_instance_insert()
329 hlist_add_head_rcu(&flow->flow_table.node[ti->node_ver], head); in table_instance_insert()
335 struct hlist_head *head; in ufid_table_instance_insert() local
337 head = find_bucket(ti, flow->ufid_table.hash); in ufid_table_instance_insert()
338 hlist_add_head_rcu(&flow->ufid_table.node[ti->node_ver], head); in ufid_table_instance_insert()
353 struct hlist_head *head; in flow_table_copy_flows() local
355 head = flex_array_get(old->buckets, i); in flow_table_copy_flows()
358 hlist_for_each_entry(flow, head, in flow_table_copy_flows()
362 hlist_for_each_entry(flow, head, in flow_table_copy_flows()
474 struct hlist_head *head; in masked_flow_lookup() local
480 head = find_bucket(ti, hash); in masked_flow_lookup()
481 hlist_for_each_entry_rcu(flow, head, flow_table.node[ti->node_ver]) { in masked_flow_lookup()
559 struct hlist_head *head; in ovs_flow_tbl_lookup_ufid() local
563 head = find_bucket(ti, hash); in ovs_flow_tbl_lookup_ufid()
564 hlist_for_each_entry_rcu(flow, head, ufid_table.node[ti->node_ver]) { in ovs_flow_tbl_lookup_ufid()