bonding: add support for numa-only in lacp mode
[vpp.git] / test / vpp_bond_interface.py
index 153f114..f05a07b 100644 (file)
@@ -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)