Displaying 2 results from an estimated 2 matches for "79e6641".
Did you mean:
796,41
2007 Nov 10
2
[PATCH] Change virtio_pci to use a shared memory area for config
...ice *vp_dev = pci_get_drvdata(pci_dev);
free_irq(pci_dev->irq, vp_dev);
+ kfree(vp_dev->config);
pci_set_drvdata(pci_dev, NULL);
pci_iounmap(pci_dev, vp_dev->ioaddr);
pci_release_regions(pci_dev);
diff --git a/include/linux/virtio_pci.h b/include/linux/virtio_pci.h
index 4b28409..79e6641 100644
--- a/include/linux/virtio_pci.h
+++ b/include/linux/virtio_pci.h
@@ -45,8 +45,12 @@
* a read-and-acknowledge. */
#define VIRTIO_PCI_ISR 19
-/* The remaining space is defined by each driver as the per-driver
- * configuration space */
-#define VIRTIO_PCI_CONFIG 20
+/* A 32-bit r/o co...
2007 Nov 10
2
[PATCH] Change virtio_pci to use a shared memory area for config
...ice *vp_dev = pci_get_drvdata(pci_dev);
free_irq(pci_dev->irq, vp_dev);
+ kfree(vp_dev->config);
pci_set_drvdata(pci_dev, NULL);
pci_iounmap(pci_dev, vp_dev->ioaddr);
pci_release_regions(pci_dev);
diff --git a/include/linux/virtio_pci.h b/include/linux/virtio_pci.h
index 4b28409..79e6641 100644
--- a/include/linux/virtio_pci.h
+++ b/include/linux/virtio_pci.h
@@ -45,8 +45,12 @@
* a read-and-acknowledge. */
#define VIRTIO_PCI_ISR 19
-/* The remaining space is defined by each driver as the per-driver
- * configuration space */
-#define VIRTIO_PCI_CONFIG 20
+/* A 32-bit r/o co...