From 804891743282fe14125a9f89d0c525f2c5cbb00d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Schmidt?= Date: Mon, 13 Mar 2000 09:10:25 +0000 Subject: [PATCH] Backout the previous fix, it is _not_ that easy too fix. Leave it as is for 4.0 the real solution comes later. --- sys/dev/ata/ata-disk.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/dev/ata/ata-disk.c b/sys/dev/ata/ata-disk.c index 2f75d5493ea5..46915a71c0d4 100644 --- a/sys/dev/ata/ata-disk.c +++ b/sys/dev/ata/ata-disk.c @@ -252,8 +252,7 @@ adstrategy(struct buf *bp) s = splbio(); bufqdisksort(&adp->queue, bp); - if (adp->controller->active == ATA_IDLE) - ad_start(adp); + ad_start(adp); splx(s); }