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/nfsserver/nfs.h | 2 +- sys/nfsserver/nfs_serv.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/nfsserver') diff --git a/sys/nfsserver/nfs.h b/sys/nfsserver/nfs.h index 25ab85d..18768af 100644 --- a/sys/nfsserver/nfs.h +++ b/sys/nfsserver/nfs.h @@ -77,7 +77,7 @@ #define B_INVAFTERWRITE B_NOCACHE /* - * The IO_METASYNC flag should be implemented for local file systems. + * The IO_METASYNC flag should be implemented for local filesystems. * (Until then, it is nothin at all.) */ #ifndef IO_METASYNC diff --git a/sys/nfsserver/nfs_serv.c b/sys/nfsserver/nfs_serv.c index 05272f2..73bee42 100644 --- a/sys/nfsserver/nfs_serv.c +++ b/sys/nfsserver/nfs_serv.c @@ -391,7 +391,7 @@ nfsrv_setattr(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, /* * If the size is being changed write acces is required, otherwise - * just check for a read only file system. + * just check for a read only filesystem. */ if (vap->va_size == ((u_quad_t)((quad_t) -1))) { if (rdonly || (vp->v_mount->mnt_flag & MNT_RDONLY)) { @@ -3864,7 +3864,7 @@ nfsrv_fsinfo(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp, /* * XXX - * There should be file system VFS OP(s) to get this information. + * There should be filesystem VFS OP(s) to get this information. * For now, assume ufs. */ if (slp->ns_so->so_type == SOCK_DGRAM) @@ -4028,9 +4028,9 @@ nfsrv_access(struct vnode *vp, int flags, struct ucred *cred, int rdonly, if (flags & VWRITE) { /* Just vn_writechk() changed to check rdonly */ /* - * Disallow write attempts on read-only file systems; + * Disallow write attempts on read-only filesystems; * unless the file is a socket or a block or character - * device resident on the file system. + * device resident on the filesystem. */ if (rdonly || (vp->v_mount->mnt_flag & MNT_RDONLY)) { switch (vp->v_type) { -- cgit v1.1