diff options
author | Thomas Gleixner <tglx@tglx.tec.linutronix.de> | 2005-05-22 15:47:19 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-05-23 07:49:40 -0400 |
commit | 7d27c8143c8234e1cae8285fd2d43c19dad69bde (patch) | |
tree | 6db0918cdc71206843816b85480194e4eddcc8d9 /fs | |
parent | c84441c47d21d9291e780cdb5686e927dcd6f227 (diff) |
[JFFS2] Whitespace cleanup. Fix missing debug message
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/jffs2/erase.c | 1 | ||||
-rw-r--r-- | fs/jffs2/nodelist.c | 12 |
2 files changed, 7 insertions, 6 deletions
diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c index 088faadf8f38..6a4c0a3685da 100644 --- a/fs/jffs2/erase.c +++ b/fs/jffs2/erase.c | |||
@@ -48,6 +48,7 @@ static void jffs2_erase_block(struct jffs2_sb_info *c, | |||
48 | #else /* Linux */ | 48 | #else /* Linux */ |
49 | struct erase_info *instr; | 49 | struct erase_info *instr; |
50 | 50 | ||
51 | D1(printk(KERN_DEBUG "jffs2_erase_block(): erase block %#x (range %#x-%#x)\n", jeb->offset, jeb->offset, jeb->offset + c->sector_size)); | ||
51 | instr = kmalloc(sizeof(struct erase_info) + sizeof(struct erase_priv_struct), GFP_KERNEL); | 52 | instr = kmalloc(sizeof(struct erase_info) + sizeof(struct erase_priv_struct), GFP_KERNEL); |
52 | if (!instr) { | 53 | if (!instr) { |
53 | printk(KERN_WARNING "kmalloc for struct erase_info in jffs2_erase_block failed. Refiling block for later\n"); | 54 | 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 index c9157e1ea40a..8a8e4b863824 100644 --- a/fs/jffs2/nodelist.c +++ b/fs/jffs2/nodelist.c | |||
@@ -489,13 +489,13 @@ struct jffs2_inode_cache *jffs2_get_ino_cache(struct jffs2_sb_info *c, uint32_t | |||
489 | void jffs2_add_ino_cache (struct jffs2_sb_info *c, struct jffs2_inode_cache *new) | 489 | void jffs2_add_ino_cache (struct jffs2_sb_info *c, struct jffs2_inode_cache *new) |
490 | { | 490 | { |
491 | struct jffs2_inode_cache **prev; | 491 | struct jffs2_inode_cache **prev; |
492 | D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino)); | 492 | |
493 | spin_lock(&c->inocache_lock); | 493 | spin_lock(&c->inocache_lock); |
494 | if (!new->ino) | 494 | if (!new->ino) |
495 | new->ino = ++c->highest_ino; | 495 | new->ino = ++c->highest_ino; |
496 | 496 | ||
497 | D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino)); | 497 | D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino)); |
498 | 498 | ||
499 | prev = &c->inocache_list[new->ino % INOCACHE_HASHSIZE]; | 499 | prev = &c->inocache_list[new->ino % INOCACHE_HASHSIZE]; |
500 | 500 | ||
501 | while ((*prev) && (*prev)->ino < new->ino) { | 501 | while ((*prev) && (*prev)->ino < new->ino) { |