diff options
author | Tom Rhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
---|---|---|
committer | Tom Rhodes <trhodes@FreeBSD.org> | 2002-05-16 21:28:32 +0000 |
commit | d394511de3304005a8a52e0cbb6dd48fe8b1d3a4 (patch) | |
tree | 0cbeb3775d12e86712b373b6e5a62d8ee7b3abc8 /sys/coda | |
parent | 2bf6dd18ba2f6fc4830854b9f5d3d79dcffc106d (diff) |
More s/file system/filesystem/g
Notes
Notes:
svn path=/head/; revision=96755
Diffstat (limited to 'sys/coda')
-rw-r--r-- | sys/coda/README | 10 | ||||
-rw-r--r-- | sys/coda/cnode.h | 4 | ||||
-rw-r--r-- | sys/coda/coda_io.h | 2 | ||||
-rw-r--r-- | sys/coda/coda_namecache.c | 2 | ||||
-rw-r--r-- | sys/coda/coda_namecache.h | 2 | ||||
-rw-r--r-- | sys/coda/coda_pioctl.h | 2 | ||||
-rw-r--r-- | sys/coda/coda_psdev.c | 2 | ||||
-rw-r--r-- | sys/coda/coda_subr.c | 2 | ||||
-rw-r--r-- | sys/coda/coda_vfsops.c | 4 | ||||
-rw-r--r-- | sys/coda/coda_vnops.c | 6 | ||||
-rw-r--r-- | sys/coda/coda_vnops.h | 2 |
11 files changed, 20 insertions, 18 deletions
diff --git a/sys/coda/README b/sys/coda/README index f9bf3c35cdc6..19de799c0eac 100644 --- a/sys/coda/README +++ b/sys/coda/README @@ -1,12 +1,14 @@ +$FreeBSD$ + Announcing the Availability of the Coda Distributed Filesystem for BSD Unix Systems - Coda is a distributed file system like NFS and AFS. It is + Coda is a distributed filesystem like NFS and AFS. It is freely available, like NFS. But it functions much like AFS in being a -"stateful" file system. Coda and AFS cache files on your local +"stateful" filesystem. Coda and AFS cache files on your local machine to improve performance. But Coda goes a step further than AFS by letting you access the cached files when there is no available network, viz. disconnected laptops and network outages. In Coda, both @@ -25,12 +27,12 @@ progress and does have bugs. It is, though, very usable. Our interest is in making Coda available to as many people as possible and to have Coda evolve and flourish. -The bulk of the Coda file system code supports the Coda client +The bulk of the Coda filesystem code supports the Coda client program, the Coda server program and the utilities needed by both. All these programs are unix programs and can run equally well on any Unix platform. Our main development thrust is improving these programs. There is a small part of Coda that deals with the kernel to -file system interface. This code is OS specific (but should not be +filesystem interface. This code is OS specific (but should not be platform specific). Coda is currently available for several OS's and platforms: diff --git a/sys/coda/cnode.h b/sys/coda/cnode.h index c1f839192273..962d329580e4 100644 --- a/sys/coda/cnode.h +++ b/sys/coda/cnode.h @@ -40,7 +40,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon University. + * This code was written for the Coda filesystem at Carnegie Mellon University. * Contributers include David Steere, James Kistler, and M. Satyanarayanan. */ @@ -147,7 +147,7 @@ struct coda_clstat { extern struct coda_clstat coda_clstat; /* - * CODA structure to hold mount/file system information + * CODA structure to hold mount/filesystem information */ struct coda_mntinfo { struct vnode *mi_rootvp; diff --git a/sys/coda/coda_io.h b/sys/coda/coda_io.h index 6620f4f0c32e..4daede1e4c13 100644 --- a/sys/coda/coda_io.h +++ b/sys/coda/coda_io.h @@ -40,7 +40,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon University. + * This code was written for the Coda filesystem at Carnegie Mellon University. * Contributers include David Steere, James Kistler, and M. Satyanarayanan. */ diff --git a/sys/coda/coda_namecache.c b/sys/coda/coda_namecache.c index 29da91aac60b..97e5b2eccfe4 100644 --- a/sys/coda/coda_namecache.c +++ b/sys/coda/coda_namecache.c @@ -40,7 +40,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon University. + * This code was written for the Coda filesystem at Carnegie Mellon University. * Contributers include David Steere, James Kistler, and M. Satyanarayanan. */ diff --git a/sys/coda/coda_namecache.h b/sys/coda/coda_namecache.h index 11f2e80b12b2..2211adfa43d7 100644 --- a/sys/coda/coda_namecache.h +++ b/sys/coda/coda_namecache.h @@ -40,7 +40,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon University. + * This code was written for the Coda filesystem at Carnegie Mellon University. * Contributers include David Steere, James Kistler, and M. Satyanarayanan. */ diff --git a/sys/coda/coda_pioctl.h b/sys/coda/coda_pioctl.h index 2c2577ce57ee..a76c653e9f7b 100644 --- a/sys/coda/coda_pioctl.h +++ b/sys/coda/coda_pioctl.h @@ -41,7 +41,7 @@ */ /* - * ITC Remote file system - vice ioctl interface module + * ITC Remote filesystem - vice ioctl interface module */ /* diff --git a/sys/coda/coda_psdev.c b/sys/coda/coda_psdev.c index 8ed4f2299e48..392012ba3dd5 100644 --- a/sys/coda/coda_psdev.c +++ b/sys/coda/coda_psdev.c @@ -39,7 +39,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon + * This code was written for the Coda filesystem at Carnegie Mellon * University. Contributers include David Steere, James Kistler, and * M. Satyanarayanan. */ diff --git a/sys/coda/coda_subr.c b/sys/coda/coda_subr.c index 7a3b3e038619..571f9caec0cb 100644 --- a/sys/coda/coda_subr.c +++ b/sys/coda/coda_subr.c @@ -39,7 +39,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon + * This code was written for the Coda filesystem at Carnegie Mellon * University. Contributers include David Steere, James Kistler, and * M. Satyanarayanan. */ diff --git a/sys/coda/coda_vfsops.c b/sys/coda/coda_vfsops.c index e868651de716..33597d6fc792 100644 --- a/sys/coda/coda_vfsops.c +++ b/sys/coda/coda_vfsops.c @@ -39,7 +39,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon + * This code was written for the Coda filesystem at Carnegie Mellon * University. Contributers include David Steere, James Kistler, and * M. Satyanarayanan. */ @@ -371,7 +371,7 @@ coda_root(vfsp, vpp) } /* - * Get file system statistics. + * Get filesystem statistics. */ int coda_nb_statfs(vfsp, sbp, td) diff --git a/sys/coda/coda_vnops.c b/sys/coda/coda_vnops.c index 3cb9d26f8b47..719aed955082 100644 --- a/sys/coda/coda_vnops.c +++ b/sys/coda/coda_vnops.c @@ -40,7 +40,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon + * This code was written for the Coda filesystem at Carnegie Mellon * University. Contributers include David Steere, James Kistler, and * M. Satyanarayanan. */ @@ -950,7 +950,7 @@ coda_inactive(v) } /* - * Remote file system operations having to do with directory manipulation. + * Remote filesystem operations having to do with directory manipulation. */ /* @@ -1681,7 +1681,7 @@ printf("coda_readdir: Internally Opening %p\n", vp); } /* - * Convert from file system blocks to device blocks + * Convert from filesystem blocks to device blocks */ int coda_bmap(v) diff --git a/sys/coda/coda_vnops.h b/sys/coda/coda_vnops.h index 29f17cfa867f..2645ba4897f5 100644 --- a/sys/coda/coda_vnops.h +++ b/sys/coda/coda_vnops.h @@ -40,7 +40,7 @@ */ /* - * This code was written for the Coda file system at Carnegie Mellon + * This code was written for the Coda filesystem at Carnegie Mellon * University. Contributers include David Steere, James Kistler, and * M. Satyanarayanan. */ |