From f4709d4d7c2dfd4a599d8290747f4f3a7ac0cb54 Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Mon, 7 Feb 2011 14:53:39 -0800 Subject: [PATCH] vswitchd: Incoming LACP packets should un-default links. --- vswitchd/bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index b369ced00..9c614fb34 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -3130,7 +3130,7 @@ lacp_process_packet(const struct ofpbuf *packet, struct iface *iface) } iface->lacp_status |= LACP_CURRENT; - iface->lacp_status &= ~LACP_EXPIRED; + iface->lacp_status &= ~(LACP_EXPIRED | LACP_DEFAULTED); iface->lacp_rx = time_msec() + LACP_SLOW_TIME_RX; iface->lacp_actor.state = iface_get_lacp_state(iface); -- 2.43.0