diff options
author | Steven Luong <sluong@cisco.com> | 2020-01-06 15:14:46 -0800 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-04-06 12:12:58 +0000 |
commit | 2e1fa54b7ebaa37aa0b2a4e8a33f3368286ff28b (patch) | |
tree | a988b2ba68f93cbc447ec92a4e13410e3aad4152 /src/vnet/bonding/node.h | |
parent | 582eac5c30e78f65ba0127aed2cb7442f4122fd2 (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; |