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/isofs/cd9660/cd9660_lookup.c | 6 +++--- sys/isofs/cd9660/cd9660_vfsops.c | 2 +- sys/isofs/cd9660/cd9660_vnops.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/isofs') diff --git a/sys/isofs/cd9660/cd9660_lookup.c b/sys/isofs/cd9660/cd9660_lookup.c index da927e1..5c7805e 100644 --- a/sys/isofs/cd9660/cd9660_lookup.c +++ b/sys/isofs/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/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 70ecb01..53715e7 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/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/isofs/cd9660/cd9660_vnops.c b/sys/isofs/cd9660/cd9660_vnops.c index 52909b1..7dcf1a9 100644 --- a/sys/isofs/cd9660/cd9660_vnops.c +++ b/sys/isofs/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) { -- cgit v1.1