From: Ben Pfaff Date: Thu, 5 Mar 2009 01:34:04 +0000 (-0800) Subject: secchan: Remove obsolete debug printf()s. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c018a51e01d179c191b1a05de7e77132596592b;p=openvswitch secchan: Remove obsolete debug printf()s. --- diff --git a/secchan/ofproto.c b/secchan/ofproto.c index 7828b134..4fbd4d5c 100644 --- a/secchan/ofproto.c +++ b/secchan/ofproto.c @@ -2680,13 +2680,6 @@ expire_rule(struct cls_rule *cls_rule, void *p_) } } -#if 0 - printf("expiring rule (%s): ", - (now >= hard_expiration ? "hard" : "idle")); - flow_print(stdout, &rule->cr.flow); - printf("\n"); -#endif - send_flow_exp(p, rule, now, (now >= hard_expiration ? OFPER_HARD_TIMEOUT : OFPER_IDLE_TIMEOUT)); @@ -2714,9 +2707,6 @@ update_used(struct ofproto *p) rule = rule_from_cls_rule( classifier_find_rule_exactly(&p->cls, &f->key, 0, UINT16_MAX)); if (!rule) { - printf("deleting mysterious rule from datapath\n"); - flow_print(stdout, &f->key); - printf("\n"); dpif_flow_del(&p->dpif, f); continue; }