diff options
author | Alexander Chernavin <achernavin@netgate.com> | 2022-03-30 13:40:29 +0000 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2022-04-01 15:49:38 +0000 |
commit | 2518dca440f1ef41500d73067fe44318b782b98d (patch) | |
tree | a351c3dbcb7729b70b26cd8e8ac26e0c7dbb0102 /src/plugins/dpdk/device | |
parent | d2c8dcfd8f0ca03d3d82abc1933f3cad4803aee7 (diff) |
dpdk: fix vlan creation on ixgbe
Type: fix
VLAN programming is currently enabled for IXGBE. However, that is only
supported for IXGBE_VF.
With this fix, disable VLAN programming for IXGBE.
Signed-off-by: Alexander Chernavin <achernavin@netgate.com>
Change-Id: I37b1d0733988c964d2b0f5a49328effacec1cb6f
Diffstat (limited to 'src/plugins/dpdk/device')
-rw-r--r-- | src/plugins/dpdk/device/driver.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/dpdk/device/driver.c b/src/plugins/dpdk/device/driver.c index bddb7e5881f..66ec1824a9d 100644 --- a/src/plugins/dpdk/device/driver.c +++ b/src/plugins/dpdk/device/driver.c @@ -30,7 +30,6 @@ static dpdk_driver_t dpdk_drivers[] = { { .drivers = DPDK_DRIVERS ({ "net_ixgbe", "Intel 82599" }), .enable_rxq_int = 1, - .program_vlans = 1, .supported_flow_actions = supported_flow_actions_intel, .use_intel_phdr_cksum = 1, }, |