Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 76a66c7e authored by Pravin B Shelar's avatar Pravin B Shelar Committed by Jesse Gross
Browse files

openvswitch: Use non rcu hlist_del() flow table entry.



Flow table destroy is done in rcu call-back context.  Therefore
there is no need to use rcu variant of hlist_del().

Signed-off-by: default avatarPravin B Shelar <pshelar@nicira.com>
Signed-off-by: default avatarJesse Gross <jesse@nicira.com>
parent 59a35d60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -302,7 +302,7 @@ void ovs_flow_tbl_destroy(struct flow_table *table)
		int ver = table->node_ver;

		hlist_for_each_entry_safe(flow, n, head, hash_node[ver]) {
			hlist_del_rcu(&flow->hash_node[ver]);
			hlist_del(&flow->hash_node[ver]);
			ovs_flow_free(flow);
		}
	}