From: Ethan Jackson Date: Wed, 26 Oct 2011 23:13:31 +0000 (-0700) Subject: bundle: Don't special case OFPP_LOCAL in bundle actions. X-Git-Tag: v1.4.0~238 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=e008bc13d03e2abb75be7d2e9271c3c50d0085a5;p=sliver-openvswitch.git bundle: Don't special case OFPP_LOCAL in bundle actions. The OFPP_LOCAL port is a real port with a carrier status. There isn't a good reason to ignore this data when implementing the bundle action. --- diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index 39b83ef3b..aba8e3ce0 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -4046,7 +4046,6 @@ slave_enabled_cb(uint16_t ofp_port, void *ofproto_) case OFPP_NORMAL: case OFPP_FLOOD: case OFPP_ALL: - case OFPP_LOCAL: case OFPP_NONE: return true; case OFPP_CONTROLLER: /* Not supported by the bundle action. */