r2230 - in trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian: . patches patches/series

Norbert Tretkowski nobse@costa.debian.org
Sun, 09 Jan 2005 19:44:00 +0100


Author: nobse
Date: 2005-01-09 19:43:59 +0100 (Sun, 09 Jan 2005)
New Revision: 2230

Added:
   trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/patches/fix-alpha-ext3-oops.dpatch
Modified:
   trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/changelog
   trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/patches/series/2.6.10-3
Log:
added a workaround for ext3 oops on alpha


Modified: trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/changelog
===================================================================
--- trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/changelog	2005-01-09 18:38:58 UTC (rev 2229)
+++ trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/changelog	2005-01-09 18:43:59 UTC (rev 2230)
@@ -37,6 +37,8 @@
       ia64-irq-affinity-upfix.dpatch
       ia64-bte_error-missing-include.dpatch
 
+  * [alpha] Added a fix for ext3 oops. (Norbert Tretkowski)
+
  -- Andres Salomon <dilinger@voxel.net>  Sat, 08 Jan 2005 23:33:11 -0500
 
 kernel-source-2.6.10 (2.6.10-2) unstable; urgency=low

Added: trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/patches/fix-alpha-ext3-oops.dpatch
===================================================================
--- trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/patches/fix-alpha-ext3-oops.dpatch	2005-01-09 18:38:58 UTC (rev 2229)
+++ trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/patches/fix-alpha-ext3-oops.dpatch	2005-01-09 18:43:59 UTC (rev 2230)
@@ -0,0 +1,13 @@
+--- a/fs/ext3/super.c	2004-08-14 07:37:41.000000000 +0200
++++ b/fs/ext3/super.c	2005-01-06 13:39:39.000000000 +0100
+@@ -2337,6 +2337,10 @@
+ static int __init init_ext3_fs(void)
+ {
+ 	int err = init_ext3_xattr();
++	
++	/* fix for oops */
++	printk(KERN_ERR "[%d] init_ext3_fs(), err = %d\n", __LINE__, err);
++	
+ 	if (err)
+ 		return err;
+ 	err = init_inodecache();

Modified: trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/patches/series/2.6.10-3
===================================================================
--- trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/patches/series/2.6.10-3	2005-01-09 18:38:58 UTC (rev 2229)
+++ trunk/kernel/source/kernel-source-2.6.10-2.6.10/debian/patches/series/2.6.10-3	2005-01-09 18:43:59 UTC (rev 2230)
@@ -3,3 +3,4 @@
 + ia64-bte_error-missing-include.dpatch
 + ia64-irq-affinity-upfix.dpatch
 + fix-mxser-compile.dpatch
++ fix-alpha-ext3-oops.dpatch