tree 6db0918cdc71206843816b85480194e4eddcc8d9
parent c84441c47d21d9291e780cdb5686e927dcd6f227
author Thomas Gleixner <[EMAIL PROTECTED]> Sun, 22 May 2005 21:47:19 +0200
committer Thomas Gleixner <[EMAIL PROTECTED]> Mon, 23 May 2005 13:49:40 +0200

[JFFS2] Whitespace cleanup. Fix missing debug message

Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>

 fs/jffs2/erase.c    |    1 +
 fs/jffs2/nodelist.c |   12 ++++++------
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
--- a/fs/jffs2/erase.c
+++ b/fs/jffs2/erase.c
@@ -48,6 +48,7 @@ static void jffs2_erase_block(struct jff
 #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");
diff --git a/fs/jffs2/nodelist.c b/fs/jffs2/nodelist.c
--- a/fs/jffs2/nodelist.c
+++ b/fs/jffs2/nodelist.c
@@ -489,13 +489,13 @@ struct jffs2_inode_cache *jffs2_get_ino_
 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) {
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to