X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_bond_interface.py;h=0db04e135b1dc90b306907d210dcd990dda0ae94;hb=59f71132e;hp=153f1142c5c6a10b05a19d9a12e0cc49bbeff20b;hpb=b9ef2739dd1e681143e78ada1ffc342ae2fb89b0;p=vpp.git diff --git a/test/vpp_bond_interface.py b/test/vpp_bond_interface.py index 153f1142c5c..0db04e135b1 100644 --- a/test/vpp_bond_interface.py +++ b/test/vpp_bond_interface.py @@ -5,19 +5,21 @@ from vpp_interface import VppInterface class VppBondInterface(VppInterface): """VPP bond interface.""" - def __init__(self, test, mode, lb=0, + def __init__(self, test, mode, lb=0, numa_only=0, use_custom_mac=0, mac_address=''): """ Create VPP Bond interface """ super(VppBondInterface, self).__init__(test) self.mode = mode self.lb = lb + self.numa_only = numa_only self.use_custom_mac = use_custom_mac self.mac_address = mac_address def add_vpp_config(self): r = self.test.vapi.bond_create(self.mode, self.lb, + self.numa_only, self.use_custom_mac, self.mac_address) self.set_sw_if_index(r.sw_if_index) @@ -27,8 +29,8 @@ class VppBondInterface(VppInterface): def enslave_vpp_bond_interface(self, sw_if_index, - is_passive, - is_long_timeout): + is_passive=0, + is_long_timeout=0): self.test.vapi.bond_enslave(sw_if_index, self.sw_if_index, is_passive,