summaryrefslogtreecommitdiffstats
path: root/sys/fs/cd9660
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/cd9660
parentb459f6c72649c5aa0ae116e177e7fb6f302b20ff (diff)
downloadFreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.zip
FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.tar.gz
More s/file system/filesystem/g
Diffstat (limited to 'sys/fs/cd9660')
-rw-r--r--sys/fs/cd9660/cd9660_lookup.c6
-rw-r--r--sys/fs/cd9660/cd9660_vfsops.c2
-rw-r--r--sys/fs/cd9660/cd9660_vnops.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/fs/cd9660/cd9660_lookup.c b/sys/fs/cd9660/cd9660_lookup.c
index da927e1..5c7805e 100644
--- a/sys/fs/cd9660/cd9660_lookup.c
+++ b/sys/fs/cd9660/cd9660_lookup.c
@@ -56,7 +56,7 @@
/*
* Convert a component of a pathname into a pointer to a locked inode.
* This is a very central and rather complicated routine.
- * If the file system is not maintained in a strict tree hierarchy,
+ * If the filesystem is not maintained in a strict tree hierarchy,
* this can result in a deadlock situation (see comments in code below).
*
* The flag argument is LOOKUP, CREATE, RENAME, or DELETE depending on
@@ -95,7 +95,7 @@ cd9660_lookup(ap)
{
register struct vnode *vdp; /* vnode for directory being searched */
register struct iso_node *dp; /* inode for directory being searched */
- register struct iso_mnt *imp; /* file system that directory is in */
+ register struct iso_mnt *imp; /* filesystem that directory is in */
struct buf *bp; /* a buffer of directory entries */
struct iso_directory_record *ep = 0;/* the current directory entry */
int entryoffsetinblock; /* offset of ep in bp's buffer */
@@ -342,7 +342,7 @@ found:
* 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/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c
index 70ecb01..53715e7 100644
--- a/sys/fs/cd9660/cd9660_vfsops.c
+++ b/sys/fs/cd9660/cd9660_vfsops.c
@@ -587,7 +587,7 @@ cd9660_root(mp, vpp)
}
/*
- * Get file system statistics.
+ * Get filesystem statistics.
*/
int
cd9660_statfs(mp, sbp, td)
diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c
index 52909b1..7dcf1a9 100644
--- a/sys/fs/cd9660/cd9660_vnops.c
+++ b/sys/fs/cd9660/cd9660_vnops.c
@@ -137,7 +137,7 @@ cd9660_access(ap)
/*
* Disallow write attempts unless the file is a socket,
* fifo, or a block or character device resident on the
- * file system.
+ * filesystem.
*/
if (mode & VWRITE) {
switch (vp->v_type) {
OpenPOWER on IntegriCloud