diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
commit | 28d42899b766c395e5a6476f5bfa88b1481a08c0 (patch) | |
tree | 0cbeb3775d12e86712b373b6e5a62d8ee7b3abc8 /sys/kern/vfs_subr.c | |
parent | b459f6c72649c5aa0ae116e177e7fb6f302b20ff (diff) | |
download | FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.zip FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.tar.gz |
More s/file system/filesystem/g
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index bb92a8c..4a34e3e 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -650,7 +650,7 @@ vlrureclaim(struct mount *mp, int count) /* * Attempt to recycle vnodes in a context that is always safe to block. - * Calling vlrurecycle() from the bowels of file system code has some + * Calling vlrurecycle() from the bowels of filesystem code has some * interesting deadlock problems. */ static struct proc *vnlruproc; @@ -1576,7 +1576,7 @@ reassignbuf(bp, newvp) /* * Create a vnode for a device. - * Used for mounting the root file system. + * Used for mounting the root filesystem. */ int bdevvp(dev, vpp) @@ -1685,7 +1685,7 @@ addalias(nvp, dev) * vnode is being eliminated in vgone. The process is awakened * when the transition is completed, and an error returned to * indicate that the vnode is no longer usable (possibly having - * been changed to a new file system type). + * been changed to a new filesystem type). */ int vget(vp, flags, td) @@ -2051,7 +2051,7 @@ vlruvp(struct vnode *vp) } /* - * Disassociate the underlying file system from a vnode. + * Disassociate the underlying filesystem from a vnode. */ static void vclean(vp, flags, td) @@ -3110,7 +3110,7 @@ NDFREE(ndp, flags) } /* - * Common file system object access control check routine. Accepts a + * Common filesystem object access control check routine. Accepts a * vnode's type, "mode", uid and gid, requested access mode, credentials, * and optional call-by-reference privused argument allowing vaccess() * to indicate to the caller whether privilege was used to satisfy the |