]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[JFFS2] Fix up new debug code for eCos build
authorAndrew Lunn <andrew@lunn.ch>
Sat, 30 Jul 2005 15:29:30 +0000 (16:29 +0100)
committerThomas Gleixner <tglx@mtd.linutronix.de>
Sun, 6 Nov 2005 17:06:10 +0000 (18:06 +0100)
The debug code cleanup broke the eCos build.

Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
fs/jffs2/build.c
fs/jffs2/debug.c
fs/jffs2/readinode.c

index f08984a64a5a0073d19e3c41be2620dc8281ef6d..8e2f1f4e8aa32d94192b6aa03e3e7cddf3c914c3 100644 (file)
@@ -7,7 +7,7 @@
  *
  * For licensing information, see the file 'LICENCE' in this directory.
  *
- * $Id: build.c,v 1.75 2005/07/22 10:32:07 dedekind Exp $
+ * $Id: build.c,v 1.76 2005/07/30 15:29:27 lunn Exp $
  *
  */
 
@@ -317,9 +317,11 @@ int jffs2_do_mount_fs(struct jffs2_sb_info *c)
 
        c->free_size = c->flash_size;
        c->nr_blocks = c->flash_size / c->sector_size;
+#ifndef __ECOS
        if (c->mtd->flags & MTD_NO_VIRTBLOCKS)
                c->blocks = vmalloc(sizeof(struct jffs2_eraseblock) * c->nr_blocks);
        else
+#endif
                c->blocks = kmalloc(sizeof(struct jffs2_eraseblock) * c->nr_blocks, GFP_KERNEL);
        if (!c->blocks)
                return -ENOMEM;
@@ -353,11 +355,13 @@ int jffs2_do_mount_fs(struct jffs2_sb_info *c)
                D1(printk(KERN_DEBUG "build_fs failed\n"));
                jffs2_free_ino_caches(c);
                jffs2_free_raw_node_refs(c);
-               if (c->mtd->flags & MTD_NO_VIRTBLOCKS) {
-                       vfree(c->blocks);
-               } else {
-                       kfree(c->blocks);
-               }
+#ifndef __ECOS
+               if (c->mtd->flags & MTD_NO_VIRTBLOCKS) 
+                    vfree(c->blocks);
+               else 
+#endif
+                    kfree(c->blocks);
+               
                return -EIO;
        }
 
index fb88eb19711b7338f10b3dbd53ead5c2c20c2973..80ac9b6514bfdab12ff6a1de59d1c4225922bce6 100644 (file)
@@ -7,10 +7,11 @@
  *
  * For licensing information, see the file 'LICENCE' in this directory.
  *
- * $Id: debug.c,v 1.7 2005/07/24 15:14:14 dedekind Exp $
+ * $Id: debug.c,v 1.8 2005/07/30 15:27:05 lunn Exp $
  *
  */
 #include <linux/kernel.h>
+#include <linux/types.h>
 #include <linux/pagemap.h>
 #include <linux/crc32.h>
 #include <linux/jffs2.h>
index 67732ba08c3e81ea96c95cfe46cf6f8cec528b3b..8c6665d0e334f02ed60390802081f6716e737c8c 100644 (file)
@@ -7,11 +7,12 @@
  *
  * For licensing information, see the file 'LICENCE' in this directory.
  *
- * $Id: readinode.c,v 1.132 2005/07/28 14:46:40 dedekind Exp $
+ * $Id: readinode.c,v 1.133 2005/07/30 15:28:24 lunn Exp $
  *
  */
 
 #include <linux/kernel.h>
+#include <linux/sched.h>
 #include <linux/slab.h>
 #include <linux/fs.h>
 #include <linux/crc32.h>
@@ -249,7 +250,7 @@ read_dnode(struct jffs2_sb_info *c,
                if (unlikely(je32_to_cpu(rd->offset) > je32_to_cpu(rd->isize)) ||
                    unlikely(PAD(je32_to_cpu(rd->csize) + sizeof(*rd)) != PAD(je32_to_cpu(rd->totlen)))) {
                                JFFS2_WARNING("inode node header CRC is corrupted at %#08x\n", ref_offset(ref));
-                               __jffs2_dbg_dump_node(c, ref_offset(ref));
+                               jffs2_dbg_dump_node(c, ref_offset(ref));
                        return 1;
                }
 
@@ -384,7 +385,7 @@ read_unknown(struct jffs2_sb_info *c,
        if (crc32(0, un, sizeof(struct jffs2_unknown_node) - 4) != je32_to_cpu(un->hdr_crc)) {
                /* Hmmm. This should have been caught at scan time. */
                JFFS2_NOTICE("node header CRC failed at %#08x. But it must have been OK earlier.\n", ref_offset(ref));
-               __jffs2_dbg_dump_node(c, ref_offset(ref));
+               jffs2_dbg_dump_node(c, ref_offset(ref));
                return 1;
        } else {
                switch(je16_to_cpu(un->nodetype) & JFFS2_COMPAT_MASK) {