diff options
author | gibbs <gibbs@FreeBSD.org> | 1998-10-09 21:38:36 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1998-10-09 21:38:36 +0000 |
commit | ed4de15d445d20c7aaeecab3961b69dc84d5c95e (patch) | |
tree | 380eb03ad41816ab1f12aeedb61f46ec46b1b7c1 /sys/dev/aha | |
parent | 851bc35d713505dee1fa01b96b7bccc4695b8c00 (diff) | |
download | FreeBSD-src-ed4de15d445d20c7aaeecab3961b69dc84d5c95e.zip FreeBSD-src-ed4de15d445d20c7aaeecab3961b69dc84d5c95e.tar.gz |
Hook up ahapoll so that dumps, synchronize cache commands or any other
command that comes in through xpt_polled_action works correctly.
Diffstat (limited to 'sys/dev/aha')
-rw-r--r-- | sys/dev/aha/aha.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/aha/aha.c b/sys/dev/aha/aha.c index 080820e..c25af1e 100644 --- a/sys/dev/aha/aha.c +++ b/sys/dev/aha/aha.c @@ -55,7 +55,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aha.c,v 1.6 1998/10/01 04:53:55 imp Exp $ + * $Id: aha.c,v 1.7 1998/10/02 04:37:48 imp Exp $ */ #include <sys/param.h> @@ -1709,6 +1709,7 @@ ahamapsgs(void *arg, bus_dma_segment_t *segs, int nseg, int error) static void ahapoll(struct cam_sim *sim) { + aha_intr(cam_sim_softc(sim)); } void |