mtd/fs/jffs2 build.c,1.51,1.52

David Woodhouse dwmw2 at infradead.org
Wed Oct 8 20:38:40 EDT 2003


Update of /home/cvs/mtd/fs/jffs2
In directory phoenix.infradead.org:/tmp/cvs-serv32520

Modified Files:
	build.c 
Log Message:
whitespace cleanup in debug output

Index: build.c
===================================================================
RCS file: /home/cvs/mtd/fs/jffs2/build.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- build.c	8 Oct 2003 13:41:55 -0000	1.51
+++ build.c	9 Oct 2003 00:38:38 -0000	1.52
@@ -264,17 +264,17 @@
 	   trying to GC to make more space. It'll be a fruitless task */
 	c->nospc_dirty_size = c->sector_size + (c->flash_size / 100);
 
-	D1(printk(KERN_DEBUG "JFFS2 trigger levels (size %dKiB, block size %dKiB, %d blocks)\n",
+	D1(printk(KERN_DEBUG "JFFS2 trigger levels (size %d KiB, block size %d KiB, %d blocks)\n",
 		  c->flash_size / 1024, c->sector_size / 1024, c->nr_blocks));
-	D1(printk(KERN_DEBUG "Blocks required to allow deletion:    %d (%dKiB)\n",
+	D1(printk(KERN_DEBUG "Blocks required to allow deletion:    %d (%d KiB)\n",
 		  c->resv_blocks_deletion, c->resv_blocks_deletion*c->sector_size/1024));
-	D1(printk(KERN_DEBUG "Blocks required to allow writes:      %d (%dKiB)\n",
+	D1(printk(KERN_DEBUG "Blocks required to allow writes:      %d (%d KiB)\n",
 		  c->resv_blocks_write, c->resv_blocks_write*c->sector_size/1024));
-	D1(printk(KERN_DEBUG "Blocks required to quiesce GC thread: %d (%dKiB)\n",
+	D1(printk(KERN_DEBUG "Blocks required to quiesce GC thread: %d (%d KiB)\n",
 		  c->resv_blocks_gctrigger, c->resv_blocks_gctrigger*c->sector_size/1024));
-	D1(printk(KERN_DEBUG "Blocks required to allow GC merges:   %d (%dKiB)\n",
+	D1(printk(KERN_DEBUG "Blocks required to allow GC merges:   %d (%d KiB)\n",
 		  c->resv_blocks_gcmerge, c->resv_blocks_gcmerge*c->sector_size/1024));
-	D1(printk(KERN_DEBUG "Blocks required to GC bad blocks:     %d (%dKiB)\n",
+	D1(printk(KERN_DEBUG "Blocks required to GC bad blocks:     %d (%d KiB)\n",
 		  c->resv_blocks_gcbad, c->resv_blocks_gcbad*c->sector_size/1024));
 	D1(printk(KERN_DEBUG "Amount of dirty space required to GC: %d bytes\n",
 		  c->nospc_dirty_size));




More information about the linux-mtd-cvs mailing list