From: Ben Pfaff Date: Thu, 26 Aug 2010 17:06:36 +0000 (-0700) Subject: vswitchd: Fix "updelay" configuration for bonds. X-Git-Tag: v1.1.0pre1~28 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=7ef6b685aef8061ec7ba1bd8f823ea9c19f67fb3;p=sliver-openvswitch.git vswitchd: Fix "updelay" configuration for bonds. Reported-by: Michael Mao Bug #3521. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index b4167f66d..0c283dd29 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; }