afs/fs/cachefs super.c,1.29,1.30

dwh at infradead.org dwh at infradead.org
Wed May 28 12:32:14 BST 2003


Update of /home/cvs/afs/fs/cachefs
In directory phoenix.infradead.org:/tmp/cvs-serv28552/fs/cachefs

Modified Files:
	super.c 
Log Message:
don't refer to AFS


Index: super.c
===================================================================
RCS file: /home/cvs/afs/fs/cachefs/super.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- super.c	23 May 2003 14:07:31 -0000	1.29
+++ super.c	28 May 2003 10:32:11 -0000	1.30
@@ -364,20 +364,20 @@
 		   CACHEFS_SUPER_MAGIC,
 		   CACHEFS_SUPER_MAGIC_SIZE)==0
 	    ) {
-		printk("CacheAFS: Found initialised cache\n");
+		printk("CacheFS: Found initialised cache\n");
 		jnlreplay = 1;
 	}
 	else if (memcmp(super->layout->magic,
 			CACHEFS_SUPER_MAGIC_NEEDS_INIT,
 			CACHEFS_SUPER_MAGIC_SIZE)==0
 		 ) {
-		printk("CacheAFS: Found uninitialised cache\n");
+		printk("CacheFS: Found uninitialised cache\n");
 		ret = cachefs_initialise_blockdev(super);
 		if (ret<0)
 			goto error;
 	}
 	else {
-		printk("CacheAFS: Wrong magic number on cache\n");
+		printk("CacheFS: Wrong magic number on cache\n");
 		ret = -EIO;
 		goto error;
 	}
@@ -484,7 +484,7 @@
 	if (nblocks>UINT_MAX)
 		nblocks = UINT_MAX;
 	if (nblocks<256) {
-		printk("CacheAFS: cache must be at least 256 blocks in size\n");
+		printk("CacheFS: cache must be at least 256 blocks in size\n");
 		__free_page(page);
 		return -ENOSPC;
 	}
@@ -810,7 +810,7 @@
 
 /*****************************************************************************/
 /*
- * allocate an AFS inode struct from our slab cache
+ * allocate an inode struct from our slab cache
  */
 static struct inode *cachefs_alloc_inode(struct super_block *sb)
 {




More information about the linux-afs-cvs mailing list