diff options
author | Steven Luong <sluong@cisco.com> | 2020-01-06 15:14:46 -0800 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-01-28 13:46:40 +0000 |
commit | a06f68556e506a6ff7f31a617a036614c84f71c0 (patch) | |
tree | 82cc00e4ca1a3ae4d95a24e3bfb4e64a186f2036 /src/vnet/bonding/node.h | |
parent | 03c0ef95cb5326243d49529151b78b53d86b34b6 (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
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 1ad19dec872..e118cfeb3eb 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; @@ -193,6 +194,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; |