From: Ben Pfaff Date: Thu, 4 Jun 2009 18:04:24 +0000 (-0700) Subject: vswitch: Remove development debug logging code that escaped. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71e5fdc691586fd26b739adefd324ffa32f59be8;p=openvswitch vswitch: Remove development debug logging code that escaped. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 2353c344..f0d85180 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -569,16 +569,6 @@ bridge_reconfigure(void) LIST_FOR_EACH (br, struct bridge, node, &all_bridges) { brstp_reconfigure(br); } - LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) { - for (i = 0; i < br->n_ports; i++) { - struct port *port = br->ports[i]; - for (j = 0; j < port->n_ifaces; j++) { - struct iface *iface = port->ifaces[j]; - VLOG_WARN("dp%u: %s on port %d", - dpif_id(&br->dpif), iface->name, iface->dp_ifidx); - } - } - } } static void