From: Ben Pfaff Date: Thu, 26 Aug 2010 17:06:36 +0000 (-0700) Subject: vswitchd: Fix "updelay" configuration for bonds. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ef6b685aef8061ec7ba1bd8f823ea9c19f67fb3;p=openvswitch vswitchd: Fix "updelay" configuration for bonds. Reported-by: Michael Mao Bug #3521. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index b4167f66..0c283dd2 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -3340,7 +3340,7 @@ port_reconfigure(struct port *port, const struct ovsrec_port *cfg) if (port->updelay < 0) { port->updelay = 0; } - port->updelay = cfg->bond_downdelay; + port->downdelay = cfg->bond_downdelay; if (port->downdelay < 0) { port->downdelay = 0; }