From: Ethan Jackson Date: Wed, 25 May 2011 20:23:49 +0000 (-0700) Subject: bridge: Interface may be configured with incorrect QoS. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48e1b7fb9b2e0f6c7cf3f54eda9679ec0130e737;p=openvswitch bridge: Interface may be configured with incorrect QoS. Bug #5739. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index d1508579..4b5d0faa 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -401,7 +401,7 @@ bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg) port_configure(port); - HMAP_FOR_EACH (iface, ofp_port_node, &br->ifaces) { + LIST_FOR_EACH (iface, port_elem, &port->ifaces) { iface_configure_cfm(iface); iface_configure_qos(iface, port->cfg->qos); iface_set_mac(iface);