summaryrefslogtreecommitdiff
path: root/sys/dev/ic/mpi.c
diff options
context:
space:
mode:
authorBret Lambert <blambert@cvs.openbsd.org>2014-09-01 07:52:31 +0000
committerBret Lambert <blambert@cvs.openbsd.org>2014-09-01 07:52:31 +0000
commit3d943da9c94fd45c5728d1bd8fcba2bbda2cd0e5 (patch)
tree4180f0c85a8b171e3c1ab88340d8dbc47ab2ff5f /sys/dev/ic/mpi.c
parent03282b82ef7a1a49ad01ba348f7bc97db52f1309 (diff)
move mpi(4) from workq to taskq
ok dlg@
Diffstat (limited to 'sys/dev/ic/mpi.c')
-rw-r--r--sys/dev/ic/mpi.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/ic/mpi.c b/sys/dev/ic/mpi.c
index e5c77b0118f..3efc4f76325 100644
--- a/sys/dev/ic/mpi.c
+++ b/sys/dev/ic/mpi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpi.c,v 1.193 2014/07/13 23:10:23 deraadt Exp $ */
+/* $OpenBSD: mpi.c,v 1.194 2014/09/01 07:52:30 blambert Exp $ */
/*
* Copyright (c) 2005, 2006, 2009 David Gwynne <dlg@openbsd.org>
@@ -31,6 +31,7 @@
#include <sys/rwlock.h>
#include <sys/sensors.h>
#include <sys/dkio.h>
+#include <sys/task.h>
#include <machine/bus.h>
@@ -225,6 +226,8 @@ mpi_attach(struct mpi_softc *sc)
rw_init(&sc->sc_lock, "mpi_lock");
mtx_init(&sc->sc_evt_rescan_mtx, IPL_BIO);
+ task_set(&sc->sc_evt_rescan, mpi_fc_rescan, sc, NULL);
+
/* disable interrupts */
mpi_write(sc, MPI_INTR_MASK,
MPI_INTR_MASK_REPLY | MPI_INTR_MASK_DOORBELL);
@@ -2474,8 +2477,7 @@ mpi_evt_fc_rescan(struct mpi_softc *sc)
mtx_leave(&sc->sc_evt_rescan_mtx);
if (queue) {
- workq_queue_task(NULL, &sc->sc_evt_rescan, 0,
- mpi_fc_rescan, sc, NULL);
+ task_add(systq, &sc->sc_evt_rescan);
}
}