Thread (122 messages) 122 messages, 8 authors, 2016-02-03

Re: [PATCH v5 8/9] virtio: add 1.0 support

From: Thomas Monjalon <hidden>
Date: 2016-01-21 11:50:11

2016-01-19 16:12, Yuanhan Liu:
 int
 vtpci_init(struct rte_pci_device *dev, struct virtio_hw *hw)
 {
-       hw->vtpci_ops = &legacy_ops;
+       hw->dev = dev;
+
+       /*
+        * Try if we can succeed reading virtio pci caps, which exists
+        * only on modern pci device. If failed, we fallback to legacy
+        * virtio handling.
+        */
+       if (virtio_read_caps(dev, hw) == 0) {
+               PMD_INIT_LOG(INFO, "modern virtio pci detected.");
+               hw->vtpci_ops = &modern_ops;
+               hw->modern    = 1;
+               dev->driver->drv_flags |= RTE_PCI_DRV_INTR_LSC;
+               return 0;
+       }
RTE_PCI_DRV_INTR_LSC is already set by virtio_resource_init_by_uio().
Do you mean interrupt was not supported with legacy virtio?
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help