]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[JFFS2] Avoid warning for empty filesystems
authorTodd Poynor <tpoynor@mvista.com>
Wed, 19 Jan 2005 19:22:04 +0000 (19:22 +0000)
committerThomas Gleixner <tglx@mtd.linutronix.de>
Mon, 23 May 2005 09:30:31 +0000 (11:30 +0200)
Avoid "Eep. No valid nodes for ino #1" message for just-created filesystem.

Signed-off-by: Todd Poynor <tpoynor@mvista.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
fs/jffs2/nodelist.c

index cd6a8bd13e0b514d5ad2df1654be9aac93cc9931..3c6d93c8ea0a3ebc1c4b97d84ce6b4cb10aae6df 100644 (file)
@@ -7,7 +7,7 @@
  *
  * For licensing information, see the file 'LICENCE' in this directory.
  *
- * $Id: nodelist.c,v 1.90 2004/12/08 17:59:20 dwmw2 Exp $
+ * $Id: nodelist.c,v 1.92 2005/01/19 19:22:00 tpoynor Exp $
  *
  */
 
@@ -127,7 +127,7 @@ int jffs2_get_inode_nodes(struct jffs2_sb_info *c, struct jffs2_inode_info *f,
 
        valid_ref = jffs2_first_valid_node(f->inocache->nodes);
 
-       if (!valid_ref)
+       if (!valid_ref && (f->inocache->ino != 1))
                printk(KERN_WARNING "Eep. No valid nodes for ino #%u\n", f->inocache->ino);
 
        while (valid_ref) {