virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] virtio-pci: also bind to Amazon PCI vendor ID
@ 2014-09-15  3:29 Anthony Liguori
  2014-09-15  3:43 ` Matt Wilson
  2014-09-15  8:20 ` Michael S. Tsirkin
  0 siblings, 2 replies; 7+ messages in thread
From: Anthony Liguori @ 2014-09-15  3:29 UTC (permalink / raw)
  To: virtualization; +Cc: kernel, Matt Wilson, Anthony Liguori, Michael Tsirkin

From: Anthony Liguori <aliguori@amazon.com>

See https://issues.oasis-open.org/browse/VIRTIO-16 although it
was prematurely closed.

Red Hat has non-redistributable Windows drivers and Microsoft
will not allow anyone else to WHQL certify drivers using that
vendor ID.  That makes it impossible to use virtio drivers with
a Windows guest without changing the vendor ID.

Cc: Matt Wilson <msw@amazon.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Michael Tsirkin <mst@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@amazon.com>
---
 drivers/virtio/virtio_pci.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c
index 101db3f..9cbac33 100644
--- a/drivers/virtio/virtio_pci.c
+++ b/drivers/virtio/virtio_pci.c
@@ -93,6 +93,8 @@ struct virtio_pci_vq_info
 /* Qumranet donated their vendor ID for devices 0x1000 thru 0x10FF. */
 static DEFINE_PCI_DEVICE_TABLE(virtio_pci_id_table) = {
 	{ PCI_DEVICE(0x1af4, PCI_ANY_ID) },
+	/* Amazon.com vendor ID */
+	{ PCI_DEVICE(0x1d0f, PCI_ANY_ID) },
 	{ 0 }
 };
 
-- 
1.7.9.5

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

end of thread, other threads:[~2014-09-16  8:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-15  3:29 [PATCH] virtio-pci: also bind to Amazon PCI vendor ID Anthony Liguori
2014-09-15  3:43 ` Matt Wilson
2014-09-15  8:20 ` Michael S. Tsirkin
2014-09-15 14:24   ` Anthony Liguori
2014-09-15 16:23     ` Michael S. Tsirkin
2014-09-15 17:58       ` Matt Wilson
2014-09-16  8:54     ` Gerd Hoffmann

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).