From 99707a7afeea9877334825a18b027662bbabc270 Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Thu, 21 Oct 2010 15:37:57 -0700 Subject: [PATCH] bridge: Log port destruction We log when we create a port, so let's log when we destroy one for parity. --- vswitchd/bridge.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 24c36405..aee84d8a 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -3564,6 +3564,8 @@ port_destroy(struct port *port) del = br->ports[port->port_idx] = br->ports[--br->n_ports]; del->port_idx = port->port_idx; + VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name); + netdev_monitor_destroy(port->monitor); free(port->ifaces); bitmap_free(port->trunks); -- 2.30.2