From 28d42899b766c395e5a6476f5bfa88b1481a08c0 Mon Sep 17 00:00:00 2001 From: trhodes Date: Thu, 16 May 2002 21:28:32 +0000 Subject: More s/file system/filesystem/g --- sys/fs/msdosfs/msdosfs_fat.c | 4 ++-- sys/fs/msdosfs/msdosfs_lookup.c | 2 +- sys/fs/msdosfs/msdosfs_vnops.c | 10 +++++----- sys/fs/msdosfs/msdosfsmount.h | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) (limited to 'sys/fs/msdosfs') diff --git a/sys/fs/msdosfs/msdosfs_fat.c b/sys/fs/msdosfs/msdosfs_fat.c index e4c0bb8..c1b8a9d 100644 --- a/sys/fs/msdosfs/msdosfs_fat.c +++ b/sys/fs/msdosfs/msdosfs_fat.c @@ -128,9 +128,9 @@ fatblock(pmp, ofs, bnp, sizep, bop) * dep - address of denode representing the file of interest * findcn - file relative cluster whose filesystem relative cluster number * and/or block number are/is to be found - * bnp - address of where to place the file system relative block number. + * bnp - address of where to place the filesystem relative block number. * If this pointer is null then don't return this quantity. - * cnp - address of where to place the file system relative cluster number. + * cnp - address of where to place the filesystem relative cluster number. * If this pointer is null then don't return this quantity. * * NOTE: Either bnp or cnp must be non-null. diff --git a/sys/fs/msdosfs/msdosfs_lookup.c b/sys/fs/msdosfs/msdosfs_lookup.c index 3f0bb76..79b0589 100644 --- a/sys/fs/msdosfs/msdosfs_lookup.c +++ b/sys/fs/msdosfs/msdosfs_lookup.c @@ -511,7 +511,7 @@ foundroot: * infrequently since we cannot avoid this race condition without * implementing a sophisticated deadlock detection algorithm. * Note also that this simple deadlock detection scheme will not - * work if the file system has any hard links other than ".." + * work if the filesystem has any hard links other than ".." * that point backwards in the directory structure. */ pdp = vdp; diff --git a/sys/fs/msdosfs/msdosfs_vnops.c b/sys/fs/msdosfs/msdosfs_vnops.c index 1f35f53..0a5cc48 100644 --- a/sys/fs/msdosfs/msdosfs_vnops.c +++ b/sys/fs/msdosfs/msdosfs_vnops.c @@ -246,9 +246,9 @@ msdosfs_access(ap) file_mode &= pmp->pm_mask; /* - * Disallow write attempts on read-only file systems; + * Disallow write attempts on read-only filesystems; * unless the file is a socket, fifo, or a block or - * character device resident on the file system. + * character device resident on the filesystem. */ if (mode & VWRITE) { switch (vp->v_type) { @@ -388,7 +388,7 @@ msdosfs_setattr(ap) * users to attempt to set SF_SETTABLE bits or anyone to * set unsupported bits. However, we ignore attempts to * set ATTR_ARCHIVE for directories `cp -pr' from a more - * sensible file system attempts it a lot. + * sensible filesystem attempts it a lot. */ if (suser_cred(cred, PRISON_ROOT)) { if (vap->va_flags & SF_SETTABLE) @@ -425,9 +425,9 @@ msdosfs_setattr(ap) if (vap->va_size != VNOVAL) { /* - * Disallow write attempts on read-only file systems; + * Disallow write attempts on read-only filesystems; * unless the file is a socket, fifo, or a block or - * character device resident on the file system. + * character device resident on the filesystem. */ switch (vp->v_type) { case VDIR: diff --git a/sys/fs/msdosfs/msdosfsmount.h b/sys/fs/msdosfs/msdosfsmount.h index 8099dee..a3bb34f 100644 --- a/sys/fs/msdosfs/msdosfsmount.h +++ b/sys/fs/msdosfs/msdosfsmount.h @@ -58,7 +58,7 @@ MALLOC_DECLARE(M_MSDOSFSMNT); #endif /* - * Layout of the mount control block for a msdos file system. + * Layout of the mount control block for a msdos filesystem. */ struct msdosfsmount { struct mount *pm_mountp;/* vfs mount struct for this fs */ -- cgit v1.1