summaryrefslogtreecommitdiffstats
path: root/sys/dev/ata/atapi-tape.c
diff options
context:
space:
mode:
authorsos <sos@FreeBSD.org>2000-03-13 12:04:58 +0000
committersos <sos@FreeBSD.org>2000-03-13 12:04:58 +0000
commit89d3e18adb263da48efeeeeb6c40f7e0ab34a39c (patch)
tree830423343cca949bf563ee1d4ef25d07509f60ec /sys/dev/ata/atapi-tape.c
parent88b8866bdd26b7ce811e987aa6d5cc52770dc9d9 (diff)
downloadFreeBSD-src-89d3e18adb263da48efeeeeb6c40f7e0ab34a39c.zip
FreeBSD-src-89d3e18adb263da48efeeeeb6c40f7e0ab34a39c.tar.gz
Enable disksort the right way both on ATA disks and ATAPI devices.
Diffstat (limited to 'sys/dev/ata/atapi-tape.c')
-rw-r--r--sys/dev/ata/atapi-tape.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/dev/ata/atapi-tape.c b/sys/dev/ata/atapi-tape.c
index e3abcf0..2f3b4d3 100644
--- a/sys/dev/ata/atapi-tape.c
+++ b/sys/dev/ata/atapi-tape.c
@@ -65,11 +65,8 @@ static struct cdevsw ast_cdevsw = {
};
/* prototypes */
-int32_t astattach(struct atapi_softc *);
-void astdetach(struct atapi_softc *);
static int32_t ast_sense(struct ast_softc *);
static void ast_describe(struct ast_softc *);
-static void ast_start(struct ast_softc *);
static int32_t ast_done(struct atapi_request *);
static int32_t ast_mode_sense(struct ast_softc *, u_int8_t, void *, int32_t);
static int32_t ast_mode_select(struct ast_softc *, void *, int32_t);
@@ -452,13 +449,14 @@ aststrategy(struct buf *bp)
s = splbio();
bufq_insert_tail(&stp->buf_queue, bp);
- ast_start(stp);
+ ata_start(stp->atp->controller);
splx(s);
}
-static void
-ast_start(struct ast_softc *stp)
+void
+ast_start(struct atapi_softc *atp)
{
+ struct ast_softc *stp = atp->driver;
struct buf *bp = bufq_first(&stp->buf_queue);
u_int32_t blkcount;
int8_t ccb[16];
@@ -511,7 +509,6 @@ ast_done(struct atapi_request *request)
}
devstat_end_transaction_buf(&stp->stats, bp);
biodone(bp);
- ast_start(stp);
return 0;
}
OpenPOWER on IntegriCloud