summaryrefslogtreecommitdiffstats
path: root/sys/fs/smbfs
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/fs/smbfs
parentb459f6c72649c5aa0ae116e177e7fb6f302b20ff (diff)
downloadFreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.zip
FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.tar.gz
More s/file system/filesystem/g
Diffstat (limited to 'sys/fs/smbfs')
-rw-r--r--sys/fs/smbfs/smbfs.h2
-rw-r--r--sys/fs/smbfs/smbfs_smb.c12
-rw-r--r--sys/fs/smbfs/smbfs_vfsops.c4
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/fs/smbfs/smbfs.h b/sys/fs/smbfs/smbfs.h
index 3078ae5..90dc8f0 100644
--- a/sys/fs/smbfs/smbfs.h
+++ b/sys/fs/smbfs/smbfs.h
@@ -49,7 +49,7 @@
#define SMBFS_MAXPATHCOMP 256 /* maximum number of path components */
-/* Layout of the mount control block for a netware file system. */
+/* Layout of the mount control block for a netware filesystem. */
struct smbfs_args {
int version;
int dev;
diff --git a/sys/fs/smbfs/smbfs_smb.c b/sys/fs/smbfs/smbfs_smb.c
index db08f5e..6610ecf 100644
--- a/sys/fs/smbfs/smbfs_smb.c
+++ b/sys/fs/smbfs/smbfs_smb.c
@@ -170,11 +170,11 @@ smbfs_smb_statfs2(struct smb_share *ssp, struct statfs *sbp,
md_get_uint32le(mdp, &units);
md_get_uint32le(mdp, &funits);
md_get_uint16le(mdp, &bsize);
- sbp->f_bsize = bpu * bsize; /* fundamental file system block size */
- sbp->f_blocks= units; /* total data blocks in file system */
+ sbp->f_bsize = bpu * bsize; /* fundamental filesystem block size */
+ sbp->f_blocks= units; /* total data blocks in filesystem */
sbp->f_bfree = funits; /* free blocks in fs */
sbp->f_bavail= funits; /* free blocks avail to non-superuser */
- sbp->f_files = 0xffff; /* total file nodes in file system */
+ sbp->f_files = 0xffff; /* total file nodes in filesystem */
sbp->f_ffree = 0xffff; /* free file nodes in fs */
smb_t2_done(t2p);
return 0;
@@ -206,11 +206,11 @@ smbfs_smb_statfs(struct smb_share *ssp, struct statfs *sbp,
md_get_uint16le(mdp, &bpu);
md_get_uint16le(mdp, &bsize);
md_get_uint16le(mdp, &funits);
- sbp->f_bsize = bpu * bsize; /* fundamental file system block size */
- sbp->f_blocks= units; /* total data blocks in file system */
+ sbp->f_bsize = bpu * bsize; /* fundamental filesystem block size */
+ sbp->f_blocks= units; /* total data blocks in filesystem */
sbp->f_bfree = funits; /* free blocks in fs */
sbp->f_bavail= funits; /* free blocks avail to non-superuser */
- sbp->f_files = 0xffff; /* total file nodes in file system */
+ sbp->f_files = 0xffff; /* total file nodes in filesystem */
sbp->f_ffree = 0xffff; /* free file nodes in fs */
smb_rq_done(rqp);
return 0;
diff --git a/sys/fs/smbfs/smbfs_vfsops.c b/sys/fs/smbfs/smbfs_vfsops.c
index f1324a1..5edff3f 100644
--- a/sys/fs/smbfs/smbfs_vfsops.c
+++ b/sys/fs/smbfs/smbfs_vfsops.c
@@ -70,7 +70,7 @@ static int smbfs_version = SMBFS_VERSION;
vm_zone_t smbfsmount_zone;
#endif
-SYSCTL_NODE(_vfs, OID_AUTO, smbfs, CTLFLAG_RW, 0, "SMB/CIFS file system");
+SYSCTL_NODE(_vfs, OID_AUTO, smbfs, CTLFLAG_RW, 0, "SMB/CIFS filesystem");
SYSCTL_INT(_vfs_smbfs, OID_AUTO, version, CTLFLAG_RD, &smbfs_version, 0, "");
SYSCTL_INT(_vfs_smbfs, OID_AUTO, debuglevel, CTLFLAG_RW, &smbfs_debuglevel, 0, "");
@@ -389,7 +389,7 @@ smbfs_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
return error;
sbp->f_flags = 0; /* copy of mount exported flags */
if (sbp != &mp->mnt_stat) {
- sbp->f_fsid = mp->mnt_stat.f_fsid; /* file system id */
+ sbp->f_fsid = mp->mnt_stat.f_fsid; /* filesystem id */
sbp->f_owner = mp->mnt_stat.f_owner; /* user that mounted the filesystem */
sbp->f_type = mp->mnt_vfc->vfc_typenum; /* type of filesystem */
bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
OpenPOWER on IntegriCloud