summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-03-09 17:08:44 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-03-09 17:08:44 +0000
commit7981401d8a76fbe79af1d3f0345dfd429622f11a (patch)
treea280f80243c0251812ffdd20677922736faf28d1 /sys
parent5a62c5f8de3e07458ea1e6655176916a250a2617 (diff)
Remove random trailing whitespace.
From gluk.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/vfs_bio.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index deea7c7b733..76e2c200069 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_bio.c,v 1.32 2001/02/27 09:13:51 csapuntz Exp $ */
+/* $OpenBSD: vfs_bio.c,v 1.33 2001/03/09 17:08:43 art Exp $ */
/* $NetBSD: vfs_bio.c,v 1.44 1996/06/11 11:15:36 pk Exp $ */
/*-
@@ -296,7 +296,7 @@ bwrite(bp)
/*
* Remember buffer type, to switch on it later. If the write was
* synchronous, but the file system was mounted with MNT_ASYNC,
- * convert it to a delayed write.
+ * convert it to a delayed write.
* XXX note that this relies on delayed tape writes being converted
* to async, not sync writes (which is safe, but ugly).
*/
@@ -602,7 +602,7 @@ getblk(vp, blkno, size, slpflag, slptimeo)
* The following is an inlined version of 'incore()', but with
* the 'invalid' test moved to after the 'busy' test. It's
* necessary because there are some cases in which the NFS
- * code sets B_INVAL prior to writing data to the server, but
+ * code sets B_INVAL prior to writing data to the server, but
* in which the buffers actually contain valid data. In this
* case, we can't allow the system to allocate a new buffer for
* the block until the write is finished.
@@ -654,7 +654,7 @@ struct buf *
geteblk(size)
int size;
{
- struct buf *bp;
+ struct buf *bp;
while ((bp = getnewbuf(0, 0)) == 0)
;
@@ -758,7 +758,7 @@ out:
/*
* Find a buffer which is available for use.
* Select something from a free list.
- * Preference is to AGE list, then LRU list.
+ * Preference is to AGE list, then LRU list.
*/
struct buf *
getnewbuf(slpflag, slptimeo)
@@ -776,7 +776,7 @@ start:
tsleep(&needbuffer, slpflag|(PRIBIO+1), "getnewbuf", slptimeo);
splx(s);
return (0);
- }
+ }
bremfree(bp);
@@ -830,7 +830,7 @@ start:
/* nuke any credentials we were holding */
if (bp->b_rcred != NOCRED) {
crfree(bp->b_rcred);
- bp->b_rcred = NOCRED;
+ bp->b_rcred = NOCRED;
}
if (bp->b_wcred != NOCRED) {
crfree(bp->b_wcred);
@@ -838,7 +838,7 @@ start:
}
bremhash(bp);
- return (bp);
+ return (bp);
}
/*
@@ -860,7 +860,7 @@ biowait(bp)
if (ISSET(bp->b_flags, B_EINTR)) {
CLR(bp->b_flags, B_EINTR);
return (EINTR);
- }
+ }
if (ISSET(bp->b_flags, B_ERROR))
return (bp->b_error ? bp->b_error : EIO);