diff options
author | Steven Luong <sluong@cisco.com> | 2019-08-27 07:43:27 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-08-27 19:19:23 +0000 |
commit | 5ad541eeaa428c6a88c40e2088cdaabc0748c9df (patch) | |
tree | 74e3d546fb39effe6cbe596cf3447b63b12274cb /src/vnet/interface.h | |
parent | 458089bbad9cf5bef6cf8119f23fc44e66b36ad3 (diff) |
interface: Remove residual dpdk bonding code
dpdk bonding code was removed in 19.08. However, there are still references
to VNET_SW_INTERFACE_FLAG_BOND_SLAVE which was set by the already removed
code.
Type: fix
Signed-off-by: Steven Luong <sluong@cisco.com>
Change-Id: I949a7281e6273f2733dd7532cc4a3bb4f3ce30de
Diffstat (limited to 'src/vnet/interface.h')
-rw-r--r-- | src/vnet/interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/interface.h b/src/vnet/interface.h index d3065dc2a9f..e6418f9c273 100644 --- a/src/vnet/interface.h +++ b/src/vnet/interface.h @@ -676,7 +676,7 @@ typedef enum vnet_sw_interface_flags_t_ VNET_SW_INTERFACE_FLAG_UNNUMBERED = (1 << 3), - VNET_SW_INTERFACE_FLAG_BOND_SLAVE = (1 << 4), + __VNET_SW_INTERFACE_FLAG_UNUSED2 = (1 << 4), /* Interface does not appear in CLI/API */ VNET_SW_INTERFACE_FLAG_HIDDEN = (1 << 5), |