aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-06-15 00:30:27 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-06-15 00:30:27 +0000
commite75a45be5689e3ccee139ef9cfafb15181568cd1 (patch)
tree1095eeb87f71ea6b2389927c9ddb88b4505aa257
parent42c187b77e0e0ef2f35f8f42d11c71723024fc80 (diff)
Notes
-rw-r--r--sys/fs/hpfs/hpfs_vnops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/hpfs/hpfs_vnops.c b/sys/fs/hpfs/hpfs_vnops.c
index 2ec01cac3355..0e2a4b75f2c8 100644
--- a/sys/fs/hpfs/hpfs_vnops.c
+++ b/sys/fs/hpfs/hpfs_vnops.c
@@ -735,14 +735,14 @@ hpfs_strategy(ap)
printf("hpfs_strategy: hpfs_bpbmap FAILED %d\n", error);
bp->b_error = error;
bp->b_ioflags |= BIO_ERROR;
- biodone(bp);
+ biodone(&bp->b_io);
return (error);
}
if ((long)bp->b_blkno == -1)
vfs_bio_clrbuf(bp);
}
if ((long)bp->b_blkno == -1) {
- biodone(bp);
+ biodone(&bp->b_io);
return (0);
}
bp->b_dev = hp->h_devvp->v_rdev;