diff options
author | Zhiyong Yang <zhiyong.yang@intel.com> | 2019-06-26 05:49:14 -0400 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2019-07-19 16:12:02 +0000 |
commit | 751e3f3824fc1a318f8c71ade664bd13c16b335e (patch) | |
tree | 205708ac99c309991acef1e04fb62fa7ec714c23 /src/vnet/bonding/bond.api | |
parent | 8ac1d6d05f2a0d6759284d4eeb5079644a5c8c86 (diff) |
bonding: add support for numa-only in lacp mode
If numa-only is set, Only slaves on local numa node
transmit pkts if have at least one, otherwise the bond
interface works as usual.
CLI change:
create bond mode lacp [load-balance { l2 | l23 | l34 } {numa-only}]
[hw-addr <mac-address>] [id <if-id>]
The new member "u8 numa_only;" is also added to bond_create_if_args_t.
Type: feature
Change-Id: Icdccedafb0738d8c9d4a5acce909ce562428c071
Signed-off-by: Zhiyong Yang <zhiyong.yang@intel.com>
Diffstat (limited to 'src/vnet/bonding/bond.api')
-rw-r--r-- | src/vnet/bonding/bond.api | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vnet/bonding/bond.api b/src/vnet/bonding/bond.api index e779453b091..e699267ccb5 100644 --- a/src/vnet/bonding/bond.api +++ b/src/vnet/bonding/bond.api @@ -19,7 +19,7 @@ the bonding device driver */ -option version = "1.0.0"; +option version = "1.0.1"; /** \brief Initialize a new bond interface with the given paramters @param client_index - opaque cookie to identify the sender @@ -29,6 +29,7 @@ option version = "1.0.0"; @param mac_address - mac addr to assign to the interface if use_custom_mac is set @param mode - mode, required (1=round-robin, 2=active-backup, 3=xor, 4=broadcastcast, 5=lacp) @param lb - load balance, optional (0=l2, 1=l34, 2=l23) valid for xor and lacp modes. Otherwise ignored + @param numa_only - if numa_only is set, pkts will be transmitted by LAG members on local numa node only if have at least one, otherwise it works as usual. */ define bond_create { @@ -39,6 +40,7 @@ define bond_create u8 mac_address[6]; u8 mode; u8 lb; + u8 numa_only; }; /** \brief Reply for bond create reply @@ -118,6 +120,7 @@ define sw_interface_bond_dump @param interface_name - name of interface @param mode - bonding mode @param lb - load balance algo + @param numa_only - enable local numa TX for lacp mode @param active_slaves - active slaves count @param slaves - config slave count */ @@ -129,6 +132,7 @@ define sw_interface_bond_details u8 interface_name[64]; u8 mode; u8 lb; + u8 numa_only; u32 active_slaves; u32 slaves; }; |