rpms/kernel/devel patch-2.6.15-git11.bz2.sign, NONE, 1.1 .cvsignore, 1.325, 1.326 kernel-2.6.spec, 1.1855, 1.1856 linux-2.6-debug-dual-line-backtrace.patch, 1.1, 1.2 linux-2.6-vm-oomkiller-debugging.patch, 1.1, 1.2 sources, 1.267, 1.268 upstream, 1.243, 1.244 linux-2.6-ia64-spinlock-size.patch, 1.1, NONE patch-2.6.15-git10.bz2.sign, 1.1, NONE

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Jan 16 02:40:29 UTC 2006


Author: davej

Update of /cvs/dist/rpms/kernel/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv22008

Modified Files:
	.cvsignore kernel-2.6.spec 
	linux-2.6-debug-dual-line-backtrace.patch 
	linux-2.6-vm-oomkiller-debugging.patch sources upstream 
Added Files:
	patch-2.6.15-git11.bz2.sign 
Removed Files:
	linux-2.6-ia64-spinlock-size.patch patch-2.6.15-git10.bz2.sign 
Log Message:
git11



--- NEW FILE patch-2.6.15-git11.bz2.sign ---
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.6 (GNU/Linux)
Comment: See http://www.kernel.org/signature.html for info

iD8DBQBDygJFyGugalF9Dw4RAv6HAJsHZ9b4rovUQkpoki+3pRHgtEbs5QCffcpM
a+VY+hsbx1LmLfBBhAgRGNw=
=0L25
-----END PGP SIGNATURE-----


Index: .cvsignore
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/.cvsignore,v
retrieving revision 1.325
retrieving revision 1.326
diff -u -r1.325 -r1.326
--- .cvsignore	14 Jan 2006 09:51:58 -0000	1.325
+++ .cvsignore	16 Jan 2006 02:40:15 -0000	1.326
@@ -4,3 +4,4 @@
 linux-2.6.15.tar.bz2
 bcm43xx-20060114.tar.bz2
 patch-2.6.15-git10.bz2
+patch-2.6.15-git11.bz2


Index: kernel-2.6.spec
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/kernel-2.6.spec,v
retrieving revision 1.1855
retrieving revision 1.1856
diff -u -r1.1855 -r1.1856
--- kernel-2.6.spec	16 Jan 2006 00:57:51 -0000	1.1855
+++ kernel-2.6.spec	16 Jan 2006 02:40:15 -0000	1.1856
@@ -207,7 +207,7 @@
 #
 # Patches 0 through 100 are meant for core subsystem upgrades
 #
-Patch1: patch-2.6.15-git10.bz2
+Patch1: patch-2.6.15-git11.bz2
 #Patch2: patch-2.6.16-rc1-git1.bz2
 
 # Patches 100 through 500 are meant for architecture patches
@@ -235,8 +235,6 @@
 Patch317: linux-2.6-ppc-iseries-input-layer.patch
 
 # 400 - 499   ia64
-Patch400: linux-2.6-ia64-spinlock-size.patch
-
 # 500 - 599   s390(x)
 # 600 - 699   sparc(64)
 
@@ -645,10 +643,6 @@
 # No input layer on iseries
 %patch317 -p1
 
-# IA64
-# Altix: Fix sn_flush_device_kernel & spinlock initialization
-%patch400 -p1
-
 #
 # Xen
 #
@@ -1360,6 +1354,7 @@
 
 %changelog
 * Sun Jan 15 2006 Dave Jones <davej at redhat.com>
+- 2.6.15-git11
 - Revert some x86-64 page table changes as an experiment.
 
 * Sat Jan 14 2006 David Woodhouse <dwmw2 at redhat.com>

linux-2.6-debug-dual-line-backtrace.patch:
 traps.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletion(-)

Index: linux-2.6-debug-dual-line-backtrace.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-debug-dual-line-backtrace.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- linux-2.6-debug-dual-line-backtrace.patch	1 Dec 2005 09:38:28 -0000	1.1
+++ linux-2.6-debug-dual-line-backtrace.patch	16 Jan 2006 02:40:16 -0000	1.2
@@ -1,29 +1,20 @@
---- linux-2.6.14/arch/i386/kernel/traps.c~	2005-12-01 04:25:36.000000000 -0500
-+++ linux-2.6.14/arch/i386/kernel/traps.c	2005-12-01 04:36:19.000000000 -0500
-@@ -116,6 +116,7 @@ static inline unsigned long print_contex
- 				unsigned long *stack, unsigned long ebp)
- {
- 	unsigned long addr;
-+	char space=0;
+--- linux-2.6.15.noarch/arch/i386/kernel/traps.c~	2006-01-15 20:49:55.000000000 -0500
++++ linux-2.6.15.noarch/arch/i386/kernel/traps.c	2006-01-15 20:50:38.000000000 -0500
+@@ -117,10 +117,16 @@ static inline int valid_stack_ptr(struct
  
- #ifdef	CONFIG_FRAME_POINTER
- 	while (valid_stack_ptr(tinfo, (void *)ebp)) {
-@@ -131,9 +132,17 @@ static inline unsigned long print_contex
- 		if (__kernel_text_address(addr)) {
- 			printk(" [<%08lx>]", addr);
- 			print_symbol(" %s", addr);
--			printk("\n");
-+			if (space == 0) {
-+				printk("    ");
-+				space = 1;
-+			} else {
-+				printk("\n");
-+				space = 0;
-+			}
- 		}
- 	}
-+	if (space==1)
+ static void print_addr_and_symbol(unsigned long addr, char *log_lvl)
+ {
++	static char space=0;
++
+ 	printk(log_lvl);
+ 	printk(" [<%08lx>] ", addr);
+ 	print_symbol("%s", addr);
+-	printk("\n");
++	if (space == 0)
++		printk("    ");
++	else
 +		printk("\n");
- #endif
- 	return ebp;
++	space = !space;
  }
+ 
+ static inline unsigned long print_context_stack(struct thread_info *tinfo,

linux-2.6-vm-oomkiller-debugging.patch:
 oom_kill.c |    1 +
 1 files changed, 1 insertion(+)

Index: linux-2.6-vm-oomkiller-debugging.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6-vm-oomkiller-debugging.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- linux-2.6-vm-oomkiller-debugging.patch	15 Oct 2005 01:13:22 -0000	1.1
+++ linux-2.6-vm-oomkiller-debugging.patch	16 Jan 2006 02:40:16 -0000	1.2
@@ -1,9 +1,9 @@
---- linux-2.6.12/mm/oom_kill.c~	2005-06-22 14:16:57.000000000 -0400
-+++ linux-2.6.12/mm/oom_kill.c	2005-06-22 14:17:35.000000000 -0400
-@@ -272,6 +272,7 @@ retry:
- 	/* Found nothing?!?! Either we hang forever, or we panic. */
+--- linux-2.6.15.noarch/mm/oom_kill.c~	2006-01-15 20:48:36.000000000 -0500
++++ linux-2.6.15.noarch/mm/oom_kill.c	2006-01-15 20:48:43.000000000 -0500
+@@ -286,6 +286,7 @@ retry:
  	if (!p) {
  		read_unlock(&tasklist_lock);
+ 		cpuset_unlock();
 +		show_mem();
  		panic("Out of memory and no killable processes...\n");
  	}


Index: sources
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/sources,v
retrieving revision 1.267
retrieving revision 1.268
diff -u -r1.267 -r1.268
--- sources	14 Jan 2006 09:51:58 -0000	1.267
+++ sources	16 Jan 2006 02:40:16 -0000	1.268
@@ -1,3 +1,4 @@
 cdf95e00f5111e31f78e1d97304d9522  linux-2.6.15.tar.bz2
 ce5867f7e98d39c0e0e1ee102213b4c9  bcm43xx-20060114.tar.bz2
 b88bcec6eddc41ccb4e34a486d58b3dd  patch-2.6.15-git10.bz2
+4d91884fd53623e6af96be128c1ce040  patch-2.6.15-git11.bz2


Index: upstream
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/upstream,v
retrieving revision 1.243
retrieving revision 1.244
diff -u -r1.243 -r1.244
--- upstream	14 Jan 2006 09:51:58 -0000	1.243
+++ upstream	16 Jan 2006 02:40:16 -0000	1.244
@@ -1,3 +1,3 @@
 linux-2.6.15.tar.bz2
-patch-2.6.15-git10.bz2
+patch-2.6.15-git11.bz2
 


--- linux-2.6-ia64-spinlock-size.patch DELETED ---


--- patch-2.6.15-git10.bz2.sign DELETED ---




More information about the fedora-cvs-commits mailing list