From 2518dca440f1ef41500d73067fe44318b782b98d Mon Sep 17 00:00:00 2001 From: Alexander Chernavin Date: Wed, 30 Mar 2022 13:40:29 +0000 Subject: 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 --- src/plugins/dpdk/device/driver.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/plugins/dpdk/device') 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, }, -- cgit 1.2.3-korg