diff options
author | 2011-07-20 20:15:23 +0000 | |
---|---|---|
committer | 2011-07-20 20:15:23 +0000 | |
commit | 6aa902aa84e190da59709c3d92103329ecc546be (patch) | |
tree | a5a2161b003c093a84d9347f02cff79055ccf9d4 | |
parent | For intermediate computations use single or extended counterparts (diff) | |
download | wireguard-openbsd-6aa902aa84e190da59709c3d92103329ecc546be.tar.xz wireguard-openbsd-6aa902aa84e190da59709c3d92103329ecc546be.zip |
For now, disable msi interrupts. Reading through the linux driver one
gets the impression that there are all kinds of preconditions and a
whitelist as well. I will be working on this whitelist but for now
disable it because it is hanging at boot for several people.
ok deraadt
-rw-r--r-- | sys/dev/pci/mfi_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/mfi_pci.c b/sys/dev/pci/mfi_pci.c index beab6cd6de6..2e12b7905a2 100644 --- a/sys/dev/pci/mfi_pci.c +++ b/sys/dev/pci/mfi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mfi_pci.c,v 1.24 2011/07/01 21:51:12 deraadt Exp $ */ +/* $OpenBSD: mfi_pci.c,v 1.25 2011/07/20 20:15:23 marco Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us> * @@ -167,7 +167,7 @@ mfi_pci_attach(struct device *parent, struct device *self, void *aux) sc->sc_dmat = pa->pa_dmat; - if (pci_intr_map_msi(pa, &ih) != 0 && pci_intr_map(pa, &ih) != 0) { + if (pci_intr_map(pa, &ih) != 0) { printf(": can't map interrupt\n"); bus_space_unmap(sc->sc_iot, sc->sc_ioh, size); return; |