svn commit: r245065 - head/sys/dev/pci

Neel Natu neel at FreeBSD.org
Sat Jan 5 18:48:24 UTC 2013


Author: neel
Date: Sat Jan  5 18:48:23 2013
New Revision: 245065
URL: http://svnweb.freebsd.org/changeset/base/245065

Log:
  Add quirk to indicate that the bhyve hostbridge is capable of supporting
  MSI and MSI-X even though it does not advertise the PCI-E capability
  itself.
  
  Obtained from:	NetApp

Modified:
  head/sys/dev/pci/pci.c

Modified: head/sys/dev/pci/pci.c
==============================================================================
--- head/sys/dev/pci/pci.c	Sat Jan  5 17:59:44 2013	(r245064)
+++ head/sys/dev/pci/pci.c	Sat Jan  5 18:48:23 2013	(r245065)
@@ -244,6 +244,7 @@ static const struct pci_quirk pci_quirks
 	 * but support MSI just fine.  QEMU uses the Intel 82440.
 	 */
 	{ 0x12378086, PCI_QUIRK_ENABLE_MSI_VM,	0,	0 },
+	{ 0x12751275, PCI_QUIRK_ENABLE_MSI_VM,	0, 	0 },	/* bhyve */
 
 	/*
 	 * HPET MMIO base address may appear in Bar1 for AMD SB600 SMBus


More information about the svn-src-all mailing list