DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] bus/pci: fix missing case for virtio-crypto
@ 2018-11-01 12:10 Fan Zhang
  2018-11-01 13:35 ` Thomas Monjalon
  2018-11-06  1:12 ` Thomas Monjalon
  0 siblings, 2 replies; 6+ messages in thread
From: Fan Zhang @ 2018-11-01 12:10 UTC (permalink / raw)
  To: dev; +Cc: thomas, alejandro.lucero

The recent change to rte_pci_read_config() caused virtio-crypto
device initialization always failed as it has a
RTE_KDRV_UIO_GENERIC driver type. This patch fixes the problem.

Fixes: 630deed612ca ("bus/pci: compare kernel driver instead of interrupt handler")

Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
---
 drivers/bus/pci/linux/pci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/bus/pci/linux/pci.c b/drivers/bus/pci/linux/pci.c
index 1783ec7f5..0220adc66 100644
--- a/drivers/bus/pci/linux/pci.c
+++ b/drivers/bus/pci/linux/pci.c
@@ -704,6 +704,7 @@ int rte_pci_read_config(const struct rte_pci_device *device,
 
 	switch (device->kdrv) {
 	case RTE_KDRV_IGB_UIO:
+	case RTE_KDRV_UIO_GENERIC:
 		return pci_uio_read_config(intr_handle, buf, len, offset);
 #ifdef VFIO_PRESENT
 	case RTE_KDRV_VFIO:
-- 
2.13.6

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-11-06  1:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-01 12:10 [dpdk-dev] [PATCH] bus/pci: fix missing case for virtio-crypto Fan Zhang
2018-11-01 13:35 ` Thomas Monjalon
2018-11-02 10:01   ` Zhang, Roy Fan
2018-11-02 10:39     ` Thomas Monjalon
2018-11-05 22:18       ` Thomas Monjalon
2018-11-06  1:12 ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).