From 6083727211ade47d7008acf4f79705b3c903776b Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Tue, 22 Mar 2011 13:30:15 -0700 Subject: [PATCH] vswitchd: Destroy lacp in port_destroy(). Port destruction could cause dangling lacp objects to live in the lacp module's 'all_lacps' list. This could cause bogus output for the lacp/show appctl command. Bug #5088. --- vswitchd/bridge.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 77d6eed7..734d0de3 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -4205,6 +4205,7 @@ port_destroy(struct port *port) port_flush_macs(port); + lacp_destroy(port->lacp); netdev_monitor_destroy(port->monitor); bitmap_free(port->trunks); free(port->bond_hash); -- 2.30.2