diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2011-06-16 22:20:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2011-06-16 22:20:40 +0000 |
commit | 5daeabf9ee4968b33804f7f7bb13172784b9bb11 (patch) | |
tree | 1d7981f3bff81ae81bc7b88d23ba4e373c50bc53 /sys/arch/amd64 | |
parent | 84f9ce5fc60fa85e3ef0df8486996c4f255fbda0 (diff) |
QEMU pretends to emulate a different prehistoric Intel host bridge.
From Brad.
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/pci/pci_machdep.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/arch/amd64/pci/pci_machdep.c b/sys/arch/amd64/pci/pci_machdep.c index 6e11b053205..c8db9359d44 100644 --- a/sys/arch/amd64/pci/pci_machdep.c +++ b/sys/arch/amd64/pci/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.49 2011/06/05 18:09:00 kettenis Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.50 2011/06/16 22:20:39 kettenis Exp $ */ /* $NetBSD: pci_machdep.c,v 1.3 2003/05/07 21:33:58 fvdl Exp $ */ /*- @@ -178,12 +178,14 @@ pci_attach_hook(struct device *parent, struct device *self, switch (PCI_VENDOR(id)) { case PCI_VENDOR_INTEL: /* - * In the land of VMWare you can have the latest - * 64-bit AMD multicore CPU behind a prehistoric Intel - * host bridge. Give them what they deserve. + * In the wonderful world of virtualization you can + * have the latest 64-bit AMD multicore CPU behind a + * prehistoric Intel host bridge. Give them what they + * deserve. */ switch (PCI_PRODUCT(id)) { - case PCI_PRODUCT_INTEL_82443BX: + case PCI_PRODUCT_INTEL_82441FX: /* QEMU */ + case PCI_PRODUCT_INTEL_82443BX: /* VMWare */ break; default: pba->pba_flags |= PCI_FLAGS_MSI_ENABLED; |