projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
769f8cc
)
vswitchd: Fix "updelay" configuration for bonds.
author
Ben Pfaff
<blp@nicira.com>
Thu, 26 Aug 2010 17:06:36 +0000
(10:06 -0700)
committer
Ben Pfaff
<blp@nicira.com>
Thu, 26 Aug 2010 17:06:36 +0000
(10:06 -0700)
Reported-by: Michael Mao <mmao@nicira.com>
Bug #3521.
vswitchd/bridge.c
patch
|
blob
|
history
diff --git
a/vswitchd/bridge.c
b/vswitchd/bridge.c
index b4167f66d63499cd75021271cb24ffb07dd3d7f4..0c283dd290e617f29a8314dfd68ac256d2139468 100644
(file)
--- 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->
up
delay = cfg->bond_downdelay;
+ port->
down
delay = cfg->bond_downdelay;
if (port->downdelay < 0) {
port->downdelay = 0;
}