diff options
author | 2011-07-25 20:56:02 +0000 | |
---|---|---|
committer | 2011-07-25 20:56:02 +0000 | |
commit | d00b3e204bd3a68b345aeba6e5e515b69e3b7de6 (patch) | |
tree | bae3acfa4d5cc82b044f11e8e13e59cd36948e9c | |
parent | two more syscall functions that should have returned int, not pid_t (diff) | |
download | wireguard-openbsd-d00b3e204bd3a68b345aeba6e5e515b69e3b7de6.tar.xz wireguard-openbsd-d00b3e204bd3a68b345aeba6e5e515b69e3b7de6.zip |
Disable MSI for now; something is still not quite right on UltrSPARC T2
systems.
-rw-r--r-- | sys/arch/sparc64/dev/vpci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/dev/vpci.c b/sys/arch/sparc64/dev/vpci.c index fc1eb53891e..4d5a4c3a729 100644 --- a/sys/arch/sparc64/dev/vpci.c +++ b/sys/arch/sparc64/dev/vpci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vpci.c,v 1.10 2011/07/06 05:35:53 kettenis Exp $ */ +/* $OpenBSD: vpci.c,v 1.11 2011/07/25 20:56:02 kettenis Exp $ */ /* * Copyright (c) 2008 Mark Kettenis <kettenis@openbsd.org> * @@ -272,7 +272,9 @@ vpci_init_msi(struct vpci_softc *sc, struct vpci_pbm *pbm) if (err != H_EOK) panic("vpci: can't enable msi eq"); +#ifdef notyet pbm->vp_flags |= PCI_FLAGS_MSI_ENABLED; +#endif return; disable_queue: |