summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_lookup.c
diff options
context:
space:
mode:
authortrhodes <trhodes@FreeBSD.org>2002-05-16 21:28:32 +0000
committertrhodes <trhodes@FreeBSD.org>2002-05-16 21:28:32 +0000
commit28d42899b766c395e5a6476f5bfa88b1481a08c0 (patch)
tree0cbeb3775d12e86712b373b6e5a62d8ee7b3abc8 /sys/kern/vfs_lookup.c
parentb459f6c72649c5aa0ae116e177e7fb6f302b20ff (diff)
downloadFreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.zip
FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.tar.gz
More s/file system/filesystem/g
Diffstat (limited to 'sys/kern/vfs_lookup.c')
-rw-r--r--sys/kern/vfs_lookup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/vfs_lookup.c b/sys/kern/vfs_lookup.c
index f2d284c..bb58983 100644
--- a/sys/kern/vfs_lookup.c
+++ b/sys/kern/vfs_lookup.c
@@ -411,7 +411,7 @@ dirloop:
* 2. If this vnode is the root of a mounted
* filesystem, then replace it with the
* vnode which was mounted on so we take the
- * .. in the other file system.
+ * .. in the other filesystem.
* 3. If the vnode is the top directory of
* the jail or chroot, don't let them out.
*/
@@ -514,7 +514,7 @@ unionlookup:
/*
* Check to see if the vnode has been mounted on;
- * if so find the root of the mounted file system.
+ * if so find the root of the mounted filesystem.
*/
while (dp->v_type == VDIR && (mp = dp->v_mountedhere) &&
(cnp->cn_flags & NOCROSSMOUNT) == 0) {
@@ -576,7 +576,7 @@ nextname:
goto dirloop;
}
/*
- * Disallow directory write attempts on read-only file systems.
+ * Disallow directory write attempts on read-only filesystems.
*/
if (rdonly &&
(cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
@@ -718,7 +718,7 @@ relookup(dvp, vpp, cnp)
("relookup: symlink found.\n"));
/*
- * Disallow directory write attempts on read-only file systems.
+ * Disallow directory write attempts on read-only filesystems.
*/
if (rdonly &&
(cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
OpenPOWER on IntegriCloud