in-band: Fix inconsistency in in-band code.
authorBen Pfaff <blp@nicira.com>
Tue, 6 Apr 2010 00:12:43 +0000 (17:12 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 20 Apr 2010 18:01:44 +0000 (11:01 -0700)
The IBR_TO_LOCAL_ARP and IBR_FROM_LOCAL_ARP flows are dropped if there is
no local MAC.  I don't see why IBR_FROM_LOCAL_DHCP should be different, so
this commit adds it too.

ofproto/in-band.c

index 2118809..7774a51 100644 (file)
@@ -504,6 +504,7 @@ in_band_run(struct in_band *in_band)
                     (OFPFW_DL_TYPE | OFPFW_DL_SRC | OFPFW_NW_PROTO),
                     OFPP_NORMAL);
     } else {
+        drop_flow(in_band, IBR_FROM_LOCAL_DHCP);
         drop_flow(in_band, IBR_TO_LOCAL_ARP);
         drop_flow(in_band, IBR_FROM_LOCAL_ARP);
     }