From: Justin Pettit Date: Fri, 16 Nov 2012 06:30:41 +0000 (-0800) Subject: ofproto-dpif: Remove datapath flows of deleted ports. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a088a1ffeba3d113c1be918969085a5c0de0d518;hp=a088a1ffeba3d113c1be918969085a5c0de0d518;p=openvswitch ofproto-dpif: Remove datapath flows of deleted ports. Commit acf608 (ofproto-dpif: Use a single underlying datapath across multiple bridges.) causes datapath flows from deleted ports to not be removed. The issue is that the code that bulk deletes old flows doesn't know the datapath port number that makes up the datapath flow definition. This commit keeps track of the datapath port in the facet for use when the datapath flow eventually needs to be removed. Signed-off-by: Justin Pettit ---