summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2019-08-06 22:45:03 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2019-08-06 22:45:03 +0000
commit98ed4dd55b3d196f66ea58c1f27e38d6b47526a9 (patch)
treea11f08dd86531a49a43f006893fe093007443f37 /sys/kern
parent8af1c4767cf45a0f0ea230dd021e9593b0cc6af1 (diff)
Fix white spaces.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/vfs_syscalls.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c
index 0ea148d25d1..d1721030a46 100644
--- a/sys/kern/vfs_syscalls.c
+++ b/sys/kern/vfs_syscalls.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_syscalls.c,v 1.332 2019/08/05 23:28:55 bluhm Exp $ */
+/* $OpenBSD: vfs_syscalls.c,v 1.333 2019/08/06 22:45:02 bluhm Exp $ */
/* $NetBSD: vfs_syscalls.c,v 1.71 1996/04/23 10:29:02 mycroft Exp $ */
/*
@@ -433,10 +433,10 @@ dounmount(struct mount *mp, int flags, struct proc *p)
if (error) {
if ((flags & MNT_DOOMED)) {
/*
- * If the mount point was busy due to
+ * If the mount point was busy due to
* being unmounted, it has been removed
* from the mount list already.
- * Restart the iteration from the last
+ * Restart the iteration from the last
* collected busy entry.
*/
mp = SLIST_FIRST(&mplist);
@@ -449,7 +449,7 @@ dounmount(struct mount *mp, int flags, struct proc *p)
}
}
- /*
+ /*
* Nested mount points cannot appear during this loop as mounting
* requires a read lock for the parent mount point.
*/
@@ -3202,7 +3202,7 @@ sys_preadv(struct proc *p, void *v, register_t *retval)
error = dofilereadv(p, SCARG(uap, fd), &auio, FO_POSITION, retval);
done:
iovec_free(iov, iovcnt);
- return (error);
+ return (error);
}
/*
@@ -3264,5 +3264,5 @@ sys_pwritev(struct proc *p, void *v, register_t *retval)
error = dofilewritev(p, SCARG(uap, fd), &auio, FO_POSITION, retval);
done:
iovec_free(iov, iovcnt);
- return (error);
+ return (error);
}