dpdk: fix vlan creation on ixgbe 27/35827/2
authorAlexander Chernavin <achernavin@netgate.com>
Wed, 30 Mar 2022 13:40:29 +0000 (13:40 +0000)
committerMatthew Smith <mgsmith@netgate.com>
Fri, 1 Apr 2022 15:49:38 +0000 (15:49 +0000)
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

src/plugins/dpdk/device/driver.c

index bddb7e5..66ec182 100644 (file)
@@ -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,
   },