summaryrefslogtreecommitdiffstats
path: root/sys/ufs/ufs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2000-04-29 16:25:22 +0000
committerphk <phk@FreeBSD.org>2000-04-29 16:25:22 +0000
commit1931990da03f90281446f4901f3b30c2c383066d (patch)
tree19592270a836346156cc3bec20bf2da14160b941 /sys/ufs/ufs
parent24992f67a9ab42ef0d1f457fe05565fa61032d1b (diff)
downloadFreeBSD-src-1931990da03f90281446f4901f3b30c2c383066d.zip
FreeBSD-src-1931990da03f90281446f4901f3b30c2c383066d.tar.gz
s/biowait/bufwait/g
Prodded by: several.
Diffstat (limited to 'sys/ufs/ufs')
-rw-r--r--sys/ufs/ufs/ufs_bmap.c2
-rw-r--r--sys/ufs/ufs/ufs_disksubr.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/ufs/ufs/ufs_bmap.c b/sys/ufs/ufs/ufs_bmap.c
index d56e005..c24f507 100644
--- a/sys/ufs/ufs/ufs_bmap.c
+++ b/sys/ufs/ufs/ufs_bmap.c
@@ -198,7 +198,7 @@ ufs_bmaparray(vp, bn, bnp, ap, nump, runp, runb)
vfs_busy_pages(bp, 0);
BUF_STRATEGY(bp);
curproc->p_stats->p_ru.ru_inblock++; /* XXX */
- error = biowait(bp);
+ error = bufwait(bp);
if (error) {
brelse(bp);
return (error);
diff --git a/sys/ufs/ufs/ufs_disksubr.c b/sys/ufs/ufs/ufs_disksubr.c
index f3f7b98..fc7fb28 100644
--- a/sys/ufs/ufs/ufs_disksubr.c
+++ b/sys/ufs/ufs/ufs_disksubr.c
@@ -183,7 +183,7 @@ readdisklabel(dev, lp)
bp->b_flags &= ~B_INVAL;
bp->b_iocmd = BIO_READ;
DEV_STRATEGY(bp, 1);
- if (biowait(bp))
+ if (bufwait(bp))
msg = "I/O error";
else for (dlp = (struct disklabel *)bp->b_data;
dlp <= (struct disklabel *)((char *)bp->b_data +
@@ -286,7 +286,7 @@ writedisklabel(dev, lp)
bp->b_flags &= ~B_INVAL;
bp->b_iocmd = BIO_READ;
DEV_STRATEGY(bp, 1);
- error = biowait(bp);
+ error = bufwait(bp);
if (error)
goto done;
for (dlp = (struct disklabel *)bp->b_data;
@@ -302,7 +302,7 @@ writedisklabel(dev, lp)
alpha_fix_srm_checksum(bp);
#endif
DEV_STRATEGY(bp, 1);
- error = biowait(bp);
+ error = bufwait(bp);
goto done;
}
}
@@ -315,7 +315,7 @@ done:
bp->b_flags &= ~B_INVAL;
bp->b_iocmd = BIO_WRITE;
DEV_STRATEGY(bp, 1);
- error = biowait(bp);
+ error = bufwait(bp);
#endif
bp->b_flags |= B_INVAL | B_AGE;
brelse(bp);
OpenPOWER on IntegriCloud