From 125ee67317fcaa2fd11ab1671c268015105d191d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 7 Aug 2012 11:32:32 -0700 Subject: [PATCH] learning-switch: Normalize the flows that are sent to the switch. This suppresses a long-standing warning from ovs-vswitchd about non-normalized flows. Signed-off-by: Ben Pfaff --- lib/learning-switch.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/learning-switch.c b/lib/learning-switch.c index e4287c4e3..c1cd909f5 100644 --- a/lib/learning-switch.c +++ b/lib/learning-switch.c @@ -576,6 +576,7 @@ process_packet_in(struct lswitch *sw, const struct ofp_header *oh) * new flow. */ memset(&fm, 0, sizeof fm); cls_rule_init(&flow, &sw->wc, 0, &fm.cr); + ofputil_normalize_rule_quiet(&fm.cr); fm.table_id = 0xff; fm.command = OFPFC_ADD; fm.idle_timeout = sw->max_idle; -- 2.43.0