From f986355c0e7b54beeab601e568e84e0ae012663b Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sun, 15 Sep 2002 17:52:35 +0000 Subject: s/Danglish/English/ Some style issues. Change the timeout to be hz/10 instead of hz. Brucification by: bde. --- sys/kern/vfs_bio.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'sys/kern') diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index 3ef984a1e1e6..7c8b16da9309 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -2819,18 +2819,19 @@ biodone(struct bio *bp) /* * Wait for a BIO to finish. - * XXX: For now resort to a timeout, the optimal locking (if any) for this - * case is not at this point obvious. + * + * XXX: resort to a timeout for now. The optimal locking (if any) for this + * case is not yet clear. */ int biowait(struct bio *bp, const char *wchan) { while ((bp->bio_flags & BIO_DONE) == 0) - msleep(bp, NULL, 0, wchan, hz); + msleep(bp, NULL, PRIBIO, wchan, hz / 10); if (!(bp->bio_flags & BIO_ERROR)) return (0); - if (bp->bio_error) + if (bp->bio_error != 0) return (bp->bio_error); return (EIO); } -- cgit v1.3