* [PATCH] pmd: Fix pci_id match
@ 2014-01-04 6:07 Asias He
[not found] ` <1388815654-2088-1-git-send-email-asias.hejun-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Asias He @ 2014-01-04 6:07 UTC (permalink / raw)
To: dev-VfR2kkLFssw
Hex numbers in /proc/ioports are lowercase. we should make it lowercase
in pci_id as well. Otherwise devices like:
00:0a.0 Ethernet controller: Red Hat, Inc Virtio network device
would not be handled by virtio-net-pmd.
Signed-off-by: Asias He <asias.hejun-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
virtio_user.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/virtio_user.c b/virtio_user.c
index 68a7bec..04dd9ac 100644
--- a/virtio_user.c
+++ b/virtio_user.c
@@ -1385,7 +1385,7 @@ eth_virtio_dev_init(struct eth_driver *eth_drv, struct rte_eth_dev *eth_dev)
priv->pci_addr = eth_dev->pci_dev->addr;
- snprintf(pci_id, sizeof(pci_id), "%04X:%02X:%02X.%d",
+ snprintf(pci_id, sizeof(pci_id), "%04x:%02x:%02x.%d",
eth_dev->pci_dev->addr.domain,
eth_dev->pci_dev->addr.bus,
eth_dev->pci_dev->addr.devid,
--
1.8.5.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-06 9:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-04 6:07 [PATCH] pmd: Fix pci_id match Asias He
[not found] ` <1388815654-2088-1-git-send-email-asias.hejun-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-01-06 9:38 ` [virtio-net-pmd PATCH] " 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).