From a57549ad227ad194559df2ca86822d659276425b Mon Sep 17 00:00:00 2001 From: Vladimir Ratnikov Date: Mon, 24 Oct 2022 11:11:56 +0000 Subject: [PATCH] dpdk: add Intel QAT 200xx series support Type: feature Signed-off-by: Vladimir Ratnikov Change-Id: I2fd1e321983ac5caa03aac8705dfc596985c35f7 --- src/plugins/dpdk/device/init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index 23a26a4157b..3f27a07f0ba 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -626,7 +626,8 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf) d->device_class == PCI_CLASS_PROCESSOR_CO && (d->device_id == 0x0443 || d->device_id == 0x18a1 || d->device_id == 0x19e3 || d->device_id == 0x37c9 || - d->device_id == 0x6f55 || d->device_id == 0x4941)) + d->device_id == 0x6f55 || d->device_id == 0x18ef || + d->device_id == 0x4941)) ; /* Cisco VIC */ else if (d->vendor_id == 0x1137 && -- 2.16.6