From: Ben Pfaff Date: Thu, 5 Mar 2009 20:23:13 +0000 (-0800) Subject: vswitchd: Remove stray debug printf(). X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23fc31463ec6f39f24bd7ae549cfa829c2cfb0f9;p=openvswitch vswitchd: Remove stray debug printf(). --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 22683286..2554e339 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -1756,9 +1756,6 @@ process_flow(struct bridge *br, const flow_t *flow, * forwarding and for learning). Later, after we do learning, we'll drop * the frames that STP wants to do learning but not forwarding on. */ if (in_port->stp_state & (STP_LISTENING | STP_BLOCKING)) { - printf("drop on %s: %s (%x)\n", - in_port->name, stp_state_name(in_port->stp_state), - in_port->stp_state_tag); goto done; }