From aa98d0cd418315a9965b7234c9e16013ba8c2616 Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Mon, 10 Jan 2011 12:18:50 -0800 Subject: [PATCH] xenserver: Allow bond_mode configuration in xen. This commit adds bond_mode configuration to Interface Reconfigure so that it may be changed using standard XenServer commands. Signed-off-by: Ethan Jackson --- .../opt_xensource_libexec_InterfaceReconfigureVswitch.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py b/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py index c352594a..d70baa49 100644 --- a/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py +++ b/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py @@ -171,6 +171,12 @@ def datapath_configure_bond(pif,slaves): argv += ['bond_%s=%d' % (name, value)] except ValueError: log("bridge %s has invalid %s '%s'" % (bridge, name, value)) + elif name == "mode": + + if val in ['balance-slb', 'active-backup']: + argv += ['bond_%s=%s' % (name, val)] + else: + log("bridge %s has invalid %s '%s'" % (bridge, name, val)) else: # Pass other bond options into other_config. argv += ["other-config:%s=%s" % (vsctl_escape("bond-%s" % name), -- 2.30.2