diff options
author | 2020-01-06 15:14:46 -0800 | |
---|---|---|
committer | 2020-05-01 18:21:37 +0000 | |
commit | 8da4a72ee16c4187f91c7c656604e1176e0b69b0 (patch) | |
tree | 222850e38e12922237d38fca08b73d035aaddede /src/vnet/bonding/node.h | |
parent | 31325df5e95283733f8b7590bc01e527b196ff3a (diff) |
bonding: Add GSO support
Add GSO support, configurable from the CLI.
Type: feature
Ticket: VPP-1820
Signed-off-by: Steven Luong <sluong@cisco.com>
Change-Id: I65885a071b24c74437e6cfe5eff237b01bc1744b
(cherry picked from commit a06f68556e506a6ff7f31a617a036614c84f71c0)
Diffstat (limited to 'src/vnet/bonding/node.h')
-rw-r--r-- | src/vnet/bonding/node.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/bonding/node.h b/src/vnet/bonding/node.h index 8ead0228523..ddd48feb1a3 100644 --- a/src/vnet/bonding/node.h +++ b/src/vnet/bonding/node.h @@ -83,6 +83,7 @@ typedef struct u8 mode; u8 lb; u8 numa_only; + u8 gso; /* return */ u32 sw_if_index; int rv; @@ -196,6 +197,7 @@ typedef struct on local numa node works for lacp mode if have at least one, otherwise it works as usual. */ u8 numa_only; + u8 gso; /* How many slaves on local numa node are there in lacp mode? */ word n_numa_slaves; |