aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-10-26 16:13:31 -0700
committerEthan Jackson <ethan@nicira.com>2011-10-27 10:53:38 -0700
commite008bc13d03e2abb75be7d2e9271c3c50d0085a5 (patch)
treecdf68c7b3bf29265fc5609b6016db791625d9e03
parent439e4d8cdd9f99462cbe712082935e0c9a728e21 (diff)
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.
-rw-r--r--ofproto/ofproto-dpif.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c
index 39b83ef3..aba8e3ce 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. */