From 2e281761473ed67ecae00205f62180e9a21c9ade Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 18 May 2011 09:16:00 -0700 Subject: [PATCH] bridge: Fill in ofport column of Interface records. This was lost in the transition to the "next" branch. --- vswitchd/bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index ff2745ef1..dd0d1b2a4 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -791,7 +791,7 @@ iface_set_ofp_port(struct iface *iface, int ofp_port) assert(iface->ofp_port < 0 && ofp_port >= 0); iface->ofp_port = ofp_port; hmap_insert(&br->ifaces, &iface->ofp_port_node, hash_int(ofp_port, 0)); - + iface_set_ofport(iface->cfg, ofp_port); } static void -- 2.43.0