diff options
author | akolechk <akolechk@cisco.com> | 2022-02-16 12:09:03 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-02-17 08:33:14 +0000 |
commit | 6450a179f4b760561f533396818f4b765bf1a7b8 (patch) | |
tree | 6ba8ddd1734fe0a20fda31902bed866c0429c08d /src/plugins/dpdk | |
parent | b3919ca67a216f45d886b27658c120b7609c44a5 (diff) |
dpdk: enable scatter on Rx for net/ena
Type: fix
Since commit https://github.com/DPDK/dpdk/commit/e2a6d08bef489215ebb77b1d3033875ada757cfa
DPDK started advertising scattered Rx feature for elastic network adapters. Thus, dpdk
plugin doesn't have to disable it for ENA by default anymore
Signed-off-by: akolechk <akolechk@cisco.com>
Change-Id: I2d4f429be992e3c4edcc0c3adf8c55f3d5381631
Diffstat (limited to 'src/plugins/dpdk')
-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 11d65f7de94..ed3d94c7ecc 100644 --- a/src/plugins/dpdk/device/driver.c +++ b/src/plugins/dpdk/device/driver.c @@ -108,7 +108,6 @@ static dpdk_driver_t dpdk_drivers[] = { .drivers = DPDK_DRIVERS ({ "net_ena", "AWS ENA VF" }), .interface_name_prefix = "VirtualFunctionEthernet", .enable_rxq_int = 1, - .disable_rx_scatter = 1, }, { .drivers = DPDK_DRIVERS ({ "net_vmxnet3", "VMware VMXNET3" }), |