From e1b607d07b9252c29ff450411ad16efbd8807c9b Mon Sep 17 00:00:00 2001 From: Ziye Yang Date: Thu, 12 Jan 2017 10:41:40 +0800 Subject: [PATCH] ioat: add missing Haswell channel 1 device ID I do not see any reason to ignore using this channel. If that, we should give comments in the file, otherwise we need to add it. Change-Id: I56ad491c67a23831befc8c761ad0a02e721a15a4 Signed-off-by: Ziye Yang --- lib/env_dpdk/pci_ioat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/env_dpdk/pci_ioat.c b/lib/env_dpdk/pci_ioat.c index 8db5da768..58e9be5ca 100644 --- a/lib/env_dpdk/pci_ioat.c +++ b/lib/env_dpdk/pci_ioat.c @@ -57,6 +57,7 @@ static struct rte_pci_id ioat_driver_id[] = { {SPDK_IOAT_PCI_DEVICE(PCI_DEVICE_ID_INTEL_IOAT_IVB8)}, {SPDK_IOAT_PCI_DEVICE(PCI_DEVICE_ID_INTEL_IOAT_IVB9)}, {SPDK_IOAT_PCI_DEVICE(PCI_DEVICE_ID_INTEL_IOAT_HSW0)}, + {SPDK_IOAT_PCI_DEVICE(PCI_DEVICE_ID_INTEL_IOAT_HSW1)}, {SPDK_IOAT_PCI_DEVICE(PCI_DEVICE_ID_INTEL_IOAT_HSW2)}, {SPDK_IOAT_PCI_DEVICE(PCI_DEVICE_ID_INTEL_IOAT_HSW3)}, {SPDK_IOAT_PCI_DEVICE(PCI_DEVICE_ID_INTEL_IOAT_HSW4)},