Fall back to INTR_MPSAFE if INTR_FAST registration fails.

PR:	kern/62276
This commit is contained in:
Scott Long 2004-02-09 05:29:05 +00:00
parent ef7efb4ab0
commit f893fdd54e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125616

View File

@ -226,8 +226,14 @@ aac_pci_attach(device_t dev)
if (bus_setup_intr(sc->aac_dev, sc->aac_irq,
INTR_FAST|INTR_TYPE_BIO, aac_intr,
sc, &sc->aac_intr)) {
device_printf(sc->aac_dev, "can't set up interrupt\n");
goto out;
device_printf(sc->aac_dev, "can't set up FAST interrupt\n");
if (bus_setup_intr(sc->aac_dev, sc->aac_irq,
INTR_MPSAFE|INTR_TYPE_BIO, aac_intr,
sc, &sc->aac_intr)) {
device_printf(sc->aac_dev,
"can't set up MPSAFE interrupt\n");
goto out;
}
}
/* assume failure is 'out of memory' */