]> err.no Git - linux-2.6/commitdiff
[JFFS2] Whitespace cleanup. Fix missing debug message
authorThomas Gleixner <tglx@tglx.tec.linutronix.de>
Sun, 22 May 2005 19:47:19 +0000 (21:47 +0200)
committerThomas Gleixner <tglx@mtd.linutronix.de>
Mon, 23 May 2005 11:49:40 +0000 (13:49 +0200)
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
fs/jffs2/erase.c
fs/jffs2/nodelist.c

index 088faadf8f388d0ee03a4152b6351bad799caf83..6a4c0a3685daf41bce5b054719ef104b42ef7c3a 100644 (file)
@@ -48,6 +48,7 @@ static void jffs2_erase_block(struct jffs2_sb_info *c,
 #else /* Linux */
        struct erase_info *instr;
 
+       D1(printk(KERN_DEBUG "jffs2_erase_block(): erase block %#x (range %#x-%#x)\n", jeb->offset, jeb->offset, jeb->offset + c->sector_size));
        instr = kmalloc(sizeof(struct erase_info) + sizeof(struct erase_priv_struct), GFP_KERNEL);
        if (!instr) {
                printk(KERN_WARNING "kmalloc for struct erase_info in jffs2_erase_block failed. Refiling block for later\n");
index c9157e1ea40a3cb6ceeb26d0e4ddb7e72df6c80f..8a8e4b86382477c2a2a8ba2bcff9fd04ef02953a 100644 (file)
@@ -489,13 +489,13 @@ struct jffs2_inode_cache *jffs2_get_ino_cache(struct jffs2_sb_info *c, uint32_t
 void jffs2_add_ino_cache (struct jffs2_sb_info *c, struct jffs2_inode_cache *new)
 {
        struct jffs2_inode_cache **prev;
-       D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino));
+
        spin_lock(&c->inocache_lock);
-       if (!new->ino)
-               new->ino = ++c->highest_ino;
-       D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino));
-       
+       if (!new->ino)
+               new->ino = ++c->highest_ino;
+
+       D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino));
+
        prev = &c->inocache_list[new->ino % INOCACHE_HASHSIZE];
 
        while ((*prev) && (*prev)->ino < new->ino) {