[Armadeus-commitlog] SF.net SVN: armadeus:[1079] trunk/buildroot/target/device/armadeus/linux/ ker
Brought to you by:
sszy
|
From: <th...@us...> - 2009-02-23 12:36:53
|
Revision: 1079
http://armadeus.svn.sourceforge.net/armadeus/?rev=1079&view=rev
Author: thom25
Date: 2009-02-23 12:36:45 +0000 (Mon, 23 Feb 2009)
Log Message:
-----------
[KERNEL] change KERN_NOTICE to KERN_DEBUG
Modified Paths:
--------------
trunk/buildroot/target/device/armadeus/linux/kernel-patches/2.6.27.13/300-apf27-armadeus-jffs2_debug.patch
Modified: trunk/buildroot/target/device/armadeus/linux/kernel-patches/2.6.27.13/300-apf27-armadeus-jffs2_debug.patch
===================================================================
--- trunk/buildroot/target/device/armadeus/linux/kernel-patches/2.6.27.13/300-apf27-armadeus-jffs2_debug.patch 2009-02-23 08:48:24 UTC (rev 1078)
+++ trunk/buildroot/target/device/armadeus/linux/kernel-patches/2.6.27.13/300-apf27-armadeus-jffs2_debug.patch 2009-02-23 12:36:45 UTC (rev 1079)
@@ -27,6 +27,15 @@
ofs, je16_to_cpu(node->magic),
je16_to_cpu(node->nodetype),
je32_to_cpu(node->totlen),
+@@ -932,7 +932,7 @@ struct jffs2_inode_cache *jffs2_scan_mak
+
+ ic = jffs2_alloc_inode_cache();
+ if (!ic) {
+- printk(KERN_NOTICE "jffs2_scan_make_inode_cache(): allocation of inode cache failed\n");
++ printk(KERN_DEBUG "jffs2_scan_make_inode_cache(): allocation of inode cache failed\n");
+ return NULL;
+ }
+ memset(ic, 0, sizeof(*ic));
@@ -965,7 +965,7 @@ static int jffs2_scan_inode_node(struct
/* Check the node CRC in any case. */
crc = crc32(0, ri, sizeof(*ri)-8);
@@ -36,6 +45,15 @@
"node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
ofs, je32_to_cpu(ri->node_crc), crc);
/*
+@@ -1016,7 +1016,7 @@ static int jffs2_scan_dirent_node(struct
+ crc = crc32(0, rd, sizeof(*rd)-8);
+
+ if (crc != je32_to_cpu(rd->node_crc)) {
+- printk(KERN_NOTICE "jffs2_scan_dirent_node(): Node CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
++ printk(KERN_DEBUG "jffs2_scan_dirent_node(): Node CRC failed on node at 0x%08x: Read 0x%08x, calculated 0x%08x\n",
+ ofs, je32_to_cpu(rd->node_crc), crc);
+ /* We believe totlen because the CRC on the node _header_ was OK, just the node itself failed. */
+ if ((err = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(rd->totlen)))))
@@ -1041,7 +1041,7 @@ static int jffs2_scan_dirent_node(struct
crc = crc32(0, fd->name, rd->nsize);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|