summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/wd_cd.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1999-09-18 21:30:27 +0000
committerphk <phk@FreeBSD.org>1999-09-18 21:30:27 +0000
commita41657c540b5754aa0245f0ec705f900dfccc4a9 (patch)
treec5daa64e6f693863e10c3e27794090d8a5d8e1e7 /sys/i386/isa/wd_cd.c
parent924236547e11eeafee3db1e24987bb763df57937 (diff)
downloadFreeBSD-src-a41657c540b5754aa0245f0ec705f900dfccc4a9.zip
FreeBSD-src-a41657c540b5754aa0245f0ec705f900dfccc4a9.tar.gz
Use devstat_end_transaction_buf() rather than Use devstat_end_transaction()
Diffstat (limited to 'sys/i386/isa/wd_cd.c')
-rw-r--r--sys/i386/isa/wd_cd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/i386/isa/wd_cd.c b/sys/i386/isa/wd_cd.c
index 678603f..e4b9ddc 100644
--- a/sys/i386/isa/wd_cd.c
+++ b/sys/i386/isa/wd_cd.c
@@ -546,9 +546,6 @@ static void
acd_done(struct acd *cdp, struct buf *bp, int resid, struct atapires result)
{
- devstat_end_transaction(cdp->device_stats, bp->b_bcount - resid,
- DEVSTAT_TAG_NONE,
- (bp->b_flags&B_READ) ? DEVSTAT_READ:DEVSTAT_WRITE);
if (result.code) {
atapi_error(cdp->ata, cdp->unit, result);
bp->b_error = EIO;
@@ -558,6 +555,7 @@ acd_done(struct acd *cdp, struct buf *bp, int resid, struct atapires result)
if ((bp->b_flags & B_READ) == B_WRITE)
cdp->flags |= F_WRITTEN;
}
+ devstat_end_transaction_buf(cdp->device_stats, bp);
biodone(bp);
acd_start(cdp);
}
OpenPOWER on IntegriCloud