summaryrefslogtreecommitdiffstats
path: root/sys/coda/coda_fbsd.c
diff options
context:
space:
mode:
authorrvb <rvb@FreeBSD.org>1998-09-11 18:50:17 +0000
committerrvb <rvb@FreeBSD.org>1998-09-11 18:50:17 +0000
commit918e3ab49af89b663522d5ef2f6ca6710a51f835 (patch)
tree11ae18c8d0b66afd40d389b6c6a1f6fcad53d002 /sys/coda/coda_fbsd.c
parentaac5469d30c451307f3e3a8b2356165d289e444a (diff)
downloadFreeBSD-src-918e3ab49af89b663522d5ef2f6ca6710a51f835.zip
FreeBSD-src-918e3ab49af89b663522d5ef2f6ca6710a51f835.tar.gz
All the references to cfs, in symbols, structs, and strings
have been changed to coda. (Same for CFS.)
Diffstat (limited to 'sys/coda/coda_fbsd.c')
-rw-r--r--sys/coda/coda_fbsd.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/coda/coda_fbsd.c b/sys/coda/coda_fbsd.c
index f137ff5..4c49386 100644
--- a/sys/coda/coda_fbsd.c
+++ b/sys/coda/coda_fbsd.c
@@ -27,7 +27,7 @@
* Mellon the rights to redistribute these changes without encumbrance.
*
* @(#) src/sys/cfs/cfs_fbsd.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $
- * $Id: $
+ * $Id: cfs_fbsd.c,v 1.2 1998/09/02 19:09:53 rvb Exp $
*
*/
@@ -99,7 +99,7 @@ vcattach(void)
VCDEBUG("makedev OK.\n");
cdevsw_add(&vccdev, &vccdevsw, NULL);
- VCDEBUG("cfs: vccdevsw entry installed at %d.\n", major(vccdev));
+ VCDEBUG("coda: vccdevsw entry installed at %d.\n", major(vccdev));
}
static vc_devsw_installed = 0;
@@ -118,7 +118,7 @@ vc_drvinit(void *unused)
}
int
-cfs_fbsd_getpages(v)
+coda_fbsd_getpages(v)
void *v;
{
struct vop_getpages_args *ap = v;
@@ -151,16 +151,16 @@ cfs_fbsd_getpages(v)
opened_internally = 1;
error = VOP_OPEN(vp, FREAD, cred, p);
-printf("cfs_getp: Internally Opening %p\n", vp);
+printf("coda_getp: Internally Opening %p\n", vp);
if (error) {
- printf("cfs_getpage: VOP_OPEN on container failed %d\n", error);
+ printf("coda_getpage: VOP_OPEN on container failed %d\n", error);
return (error);
}
if (vp->v_type == VREG) {
error = vfs_object_create(vp, p, cred, 1);
if (error != 0) {
- printf("cfs_getpage: vfs_object_create() returns %d\n", error);
+ printf("coda_getpage: vfs_object_create() returns %d\n", error);
vput(vp);
return(error);
}
@@ -168,10 +168,10 @@ printf("cfs_getp: Internally Opening %p\n", vp);
cfvp = cp->c_ovp;
} else {
-printf("cfs_getp: has container %p\n", cfvp);
+printf("coda_getp: has container %p\n", cfvp);
}
-printf("cfs_fbsd_getpages: using container ");
+printf("coda_fbsd_getpages: using container ");
/*
error = vnode_pager_generic_getpages(cfvp, ap->a_m, ap->a_count,
ap->a_reqpage);
@@ -191,7 +191,7 @@ printf("error = %d\n", error);
}
int
-cfs_fbsd_putpages(v)
+coda_fbsd_putpages(v)
void *v;
{
struct vop_putpages_args *ap = v;
OpenPOWER on IntegriCloud