aboutsummaryrefslogtreecommitdiff
path: root/sys/pc98
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2000-04-29 16:25:22 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2000-04-29 16:25:22 +0000
commit87150cb06d29e7f63fbdef09a1a12a8f037312c5 (patch)
treed1d3455602854e0d42c723a3ad39f617f93c426c /sys/pc98
parentc1462ad3254434cec3fbf14df1a9c717bb514f94 (diff)
downloadsrc-87150cb06d29e7f63fbdef09a1a12a8f037312c5.tar.gz
src-87150cb06d29e7f63fbdef09a1a12a8f037312c5.zip
s/biowait/bufwait/g
Prodded by: several.
Notes
Notes: svn path=/head/; revision=59762
Diffstat (limited to 'sys/pc98')
-rw-r--r--sys/pc98/pc98/diskslice_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pc98/pc98/diskslice_machdep.c b/sys/pc98/pc98/diskslice_machdep.c
index a829592f56e3..5ff899caa1a2 100644
--- a/sys/pc98/pc98/diskslice_machdep.c
+++ b/sys/pc98/pc98/diskslice_machdep.c
@@ -249,7 +249,7 @@ reread_mbr:
bp->b_bcount = 1024;
#endif
DEV_STRATEGY(bp, 1);
- if (biowait(bp) != 0) {
+ if (bufwait(bp) != 0) {
diskerr(&bp->b_io, "reading primary partition table: error",
LOG_PRINTF, 0, (struct disklabel *)NULL);
printf("\n");
@@ -550,7 +550,7 @@ mbr_extended(dev, lp, ssp, ext_offset, ext_size, base_ext_offset, nsectors,
bp->b_bcount = lp->d_secsize;
bp->b_iocmd = BIO_READ;
BUF_STRATEGY(bp, 1);
- if (biowait(bp) != 0) {
+ if (bufwait(bp) != 0) {
diskerr(bp, "reading extended partition table: error",
LOG_PRINTF, 0, (struct disklabel *)NULL);
printf("\n");