From: Alexander Chernavin Date: Wed, 30 Mar 2022 13:40:29 +0000 (+0000) Subject: dpdk: fix vlan creation on ixgbe X-Git-Tag: v22.10-rc0~156 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F27%2F35827%2F2;p=vpp.git 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 Change-Id: I37b1d0733988c964d2b0f5a49328effacec1cb6f --- 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, },