rpms/kernel/devel .cvsignore, 1.163, 1.164 kernel-2.6.spec, 1.1400, 1.1401 linux-2.4.0-nonintconfig.patch, 1.16, 1.17 linux-2.6.11-execshield.patch, 1.10, 1.11 linux-2.6.11-panic-stackdump.patch, 1.1, 1.2 linux-2.6.12-compile-fixes.patch, 1.5, 1.6 linux-2.6.12-tux.patch, 1.3, 1.4 upstream, 1.93, 1.94

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Jun 27 05:54:09 UTC 2005


Author: davej

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

Modified Files:
	.cvsignore kernel-2.6.spec linux-2.4.0-nonintconfig.patch 
	linux-2.6.11-execshield.patch 
	linux-2.6.11-panic-stackdump.patch 
	linux-2.6.12-compile-fixes.patch linux-2.6.12-tux.patch 
	upstream 
Log Message:
git8



Index: .cvsignore
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/.cvsignore,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- .cvsignore	23 Jun 2005 18:06:42 -0000	1.163
+++ .cvsignore	27 Jun 2005 05:54:04 -0000	1.164
@@ -7,3 +7,4 @@
 kernel-2.6.12
 linux-2.6.12.tar.bz2
 patch-2.6.12-git5.bz2
+patch-2.6.12-git8.bz2


Index: kernel-2.6.spec
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/kernel-2.6.spec,v
retrieving revision 1.1400
retrieving revision 1.1401
diff -u -r1.1400 -r1.1401
--- kernel-2.6.spec	24 Jun 2005 03:17:29 -0000	1.1400
+++ kernel-2.6.spec	27 Jun 2005 05:54:04 -0000	1.1401
@@ -220,7 +220,7 @@
 #
 # Patches 0 through 100 are meant for core subsystem upgrades
 #
-Patch1: patch-2.6.12-git5.bz2
+Patch1: patch-2.6.12-git8.bz2
 
 # Patches 100 through 500 are meant for architecture patches
 
@@ -731,11 +731,11 @@
 %patch1402 -p1
 
 # netdump bits
-%patch1500 -p1
+#%patch1500 -p1
 # Netdump is broken right now. It applies, but not with -F1. Its h0rked. Leave it off.
 #%patch1501 -p1
 #%patch1502 -p1
-%patch1503 -p1
+#%patch1503 -p1
 
 #
 # Various SELinux fixes from 2.6.10rc
@@ -1252,6 +1252,9 @@
 %endif
 
 %changelog
+* Mon Jun 27 2005 Dave Jones <davej at redhat.com>
+- 2.6.12-git8
+
 * Thu Jun 23 2005 Dave Jones <davej at redhat.com>
 - 2.6.12-git5
 - Revert ipw drivers back to those shipped with FC4 for the time being..

linux-2.4.0-nonintconfig.patch:
 linux-2.6.12/scripts/kconfig/confdata.c |    4 ++--
 linux-800/scripts/kconfig/Makefile      |    4 ++++
 linux-800/scripts/kconfig/conf.c        |   26 +++++++++++++++++++++++---
 3 files changed, 29 insertions(+), 5 deletions(-)

Index: linux-2.4.0-nonintconfig.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.4.0-nonintconfig.patch,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- linux-2.4.0-nonintconfig.patch	22 Jun 2005 17:21:46 -0000	1.16
+++ linux-2.4.0-nonintconfig.patch	27 Jun 2005 05:54:04 -0000	1.17
@@ -9,15 +9,15 @@
  	set_default,
  	set_yes,
  	set_mod,
-@@ -36,6 +37,8 @@ static struct menu *rootEntry;
+@@ -37,6 +37,8 @@ static struct menu *rootEntry;
  
- static char nohelp_text[] = "Sorry, no help available for this option yet.\n";
+ static char nohelp_text[] = N_("Sorry, no help available for this option yet.\n");
  
 +static int return_value = 0;
 +
- static void strip(signed char *str)
+ static void strip(char *str)
  {
- 	signed char *p = str;
+ 	char *p = str;
 @@ -93,6 +96,12 @@ static void conf_askvalue(struct symbol 
  		fflush(stdout);
  		fgets(line, 128, stdin);

linux-2.6.11-execshield.patch:
 linux-2.6.11/arch/i386/kernel/traps.c          |  111 ++++++++++++++++-------
 linux-2.6.11/arch/x86_64/mm/fault.c            |    2 
 linux-2.6.12/include/asm-x86_64/processor.h    |    5 +
 linux-810/arch/i386/kernel/asm-offsets.c       |    1 
 linux-810/arch/i386/kernel/entry.S             |    8 +
 linux-810/arch/i386/kernel/process.c           |   59 ++++++++++++
 linux-810/arch/i386/kernel/signal.c            |    4 
 linux-810/arch/i386/kernel/smp.c               |    3 
 linux-810/arch/i386/kernel/sysenter.c          |   55 +++++++++++
 linux-810/arch/i386/kernel/traps.c             |   48 +++++++++-
 linux-810/arch/i386/kernel/vsyscall-sysenter.S |    6 -
 linux-810/arch/i386/kernel/vsyscall.lds.S      |    4 
 linux-810/arch/i386/mm/init.c                  |    6 +
 linux-810/arch/i386/mm/mmap.c                  |    6 -
 linux-810/arch/ia64/ia32/binfmt_elf32.c        |    2 
 linux-810/arch/x86_64/ia32/ia32_binfmt.c       |    2 
 linux-810/arch/x86_64/kernel/process.c         |    7 -
 linux-810/arch/x86_64/mm/Makefile              |    2 
 linux-810/arch/x86_64/mm/mmap.c                |   95 +++++++++++++++++++
 linux-810/drivers/char/random.c                |    7 +
 linux-810/fs/binfmt_elf.c                      |  120 ++++++++++++++++++++-----
 linux-810/fs/proc/array.c                      |    8 +
 linux-810/fs/proc/base.c                       |    4 
 linux-810/fs/proc/task_mmu.c                   |   25 ++++-
 linux-810/include/asm-i386/desc.h              |   14 ++
 linux-810/include/asm-i386/elf.h               |   42 +++++---
 linux-810/include/asm-i386/mmu.h               |    6 +
 linux-810/include/asm-i386/pgalloc.h           |    1 
 linux-810/include/asm-i386/processor.h         |    8 +
 linux-810/include/asm-i386/thread_info.h       |    1 
 linux-810/include/asm-ia64/pgalloc.h           |    4 
 linux-810/include/asm-ppc/pgalloc.h            |    5 +
 linux-810/include/asm-ppc64/pgalloc.h          |    5 +
 linux-810/include/asm-s390/pgalloc.h           |    4 
 linux-810/include/asm-sparc/pgalloc.h          |    4 
 linux-810/include/asm-sparc64/pgalloc.h        |    4 
 linux-810/include/asm-x86_64/pgalloc.h         |    7 +
 linux-810/include/linux/mm.h                   |    9 +
 linux-810/include/linux/resource.h             |    5 -
 linux-810/include/linux/sched.h                |    9 +
 linux-810/include/linux/sysctl.h               |    3 
 linux-810/kernel/signal.c                      |   38 +++++++
 linux-810/kernel/sysctl.c                      |   39 ++++++++
 linux-810/mm/fremap.c                          |   10 +-
 linux-810/mm/mmap.c                            |  105 ++++++++++++++++++++-
 linux-810/mm/mprotect.c                        |    5 -
 linux-810/mm/mremap.c                          |    4 
 47 files changed, 800 insertions(+), 122 deletions(-)

Index: linux-2.6.11-execshield.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6.11-execshield.patch,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- linux-2.6.11-execshield.patch	22 Jun 2005 18:36:57 -0000	1.10
+++ linux-2.6.11-execshield.patch	27 Jun 2005 05:54:04 -0000	1.11
@@ -152,13 +152,13 @@
  
  #include <asm/cpufeature.h>
  #include <asm/msr.h>
-@@ -41,11 +42,20 @@ void enable_sep_cpu(void *info)
+@@ -41,11 +42,20 @@ void enable_sep_cpu(void)
  extern const char vsyscall_int80_start, vsyscall_int80_end;
  extern const char vsyscall_sysenter_start, vsyscall_sysenter_end;
  
 +struct page *sysenter_page;
 +
- static int __init sysenter_setup(void)
+ int __init sysenter_setup(void)
  {
  	void *page = (void *)get_zeroed_page(GFP_ATOMIC);
  
@@ -174,10 +174,8 @@
  
  	if (!boot_cpu_has(X86_FEATURE_SEP)) {
  		memcpy(page,
-@@ -63,3 +73,46 @@ static int __init sysenter_setup(void)
+@@ -63,1 +73,44 @@ static int __init sysenter_setup(void)
  }
- 
- __initcall(sysenter_setup);
 +
 +extern void SYSENTER_RETURN_OFFSET;
 +
@@ -1664,8 +1662,8 @@
  	instr = (unsigned char *)convert_rip_to_linear(current, regs);
  	max_instr = instr + 15;
  
--	if ((regs->cs & 3) != 0 && instr >= (unsigned char *)TASK_SIZE)
-+	if ((regs->cs & 3) != 0 && instr >= (unsigned char *)TASK_SIZE64)
+-	if (user_mode(regs) && instr >= (unsigned char *)TASK_SIZE)
++	if (user_mode(regs) && instr >= (unsigned char *)TASK_SIZE64)
  		return 0;
  
  	while (scan_more && instr < max_instr) { 

linux-2.6.11-panic-stackdump.patch:
 panic.c |    1 +
 1 files changed, 1 insertion(+)

Index: linux-2.6.11-panic-stackdump.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6.11-panic-stackdump.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- linux-2.6.11-panic-stackdump.patch	20 Apr 2005 02:19:00 -0000	1.1
+++ linux-2.6.11-panic-stackdump.patch	27 Jun 2005 05:54:05 -0000	1.2
@@ -1,10 +1,10 @@
---- linux-2.6.11/kernel/panic.c~	2005-04-19 22:09:50.000000000 -0400
-+++ linux-2.6.11/kernel/panic.c	2005-04-19 22:09:57.000000000 -0400
-@@ -68,6 +68,7 @@ NORET_TYPE void panic(const char * fmt, 
+--- linux-2.6.12/kernel/panic.c~	2005-06-27 01:31:30.000000000 -0400
++++ linux-2.6.12/kernel/panic.c	2005-06-27 01:31:40.000000000 -0400
+@@ -76,6 +76,7 @@ NORET_TYPE void panic(const char * fmt, 
  	vsnprintf(buf, sizeof(buf), fmt, args);
  	va_end(args);
  	printk(KERN_EMERG "Kernel panic - not syncing: %s\n",buf);
-+	dump_stack();
- 	if (crashdump_func())
- 		BUG();
++ 	dump_stack();
  	bust_spinlocks(0);
+ 
+ 	/*

linux-2.6.12-compile-fixes.patch:
 media/video/Kconfig     |    2 +-
 scsi/aacraid/commctrl.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Index: linux-2.6.12-compile-fixes.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6.12-compile-fixes.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- linux-2.6.12-compile-fixes.patch	22 Jun 2005 20:31:35 -0000	1.5
+++ linux-2.6.12-compile-fixes.patch	27 Jun 2005 05:54:05 -0000	1.6
@@ -9,121 +9,14 @@
  	if (!user_srbcmd) {
  		dprintk((KERN_DEBUG"aacraid: Could not make a copy of the srb\n"));
  		rcode = -ENOMEM;
---- linux-2.6.12/arch/ia64/sn/kernel/xpc.h~	2005-06-22 15:10:37.000000000 -0400
-+++ linux-2.6.12/arch/ia64/sn/kernel/xpc.h	2005-06-22 15:14:19.000000000 -0400
-@@ -138,7 +138,7 @@ struct xpc_vars {
-  * occupies half a cacheline.
-  */
- struct xpc_vars_part {
--	u64 magic;
-+	volatile u64 magic;
- 
- 	u64 openclose_args_pa;	/* physical address of open and close args */
- 	u64 GPs_pa;		/* physical address of Get/Put values */
-@@ -185,8 +185,8 @@ struct xpc_vars_part {
-  * Define a Get/Put value pair (pointers) used with a message queue.
-  */
- struct xpc_gp {
--	s64 get;	/* Get value */
--	s64 put;	/* Put value */
-+	volatile s64 get;	/* Get value */
-+	volatile s64 put;	/* Put value */
- };
- 
- #define XPC_GP_SIZE \
-@@ -231,7 +231,7 @@ struct xpc_openclose_args {
-  */
- struct xpc_notify {
- 	struct semaphore sema;		/* notify semaphore */
--	u8 type;			/* type of notification */
-+	volatile u8 type;			/* type of notification */
- 
- 	/* the following two fields are only used if type == XPC_N_CALL */
- 	xpc_notify_func func;		/* user's notify function */
-@@ -439,7 +439,7 @@ struct xpc_partition {
- 
- 	/* XPC infrastructure referencing and teardown control */
- 
--	u8 setup_state;			/* infrastructure setup state */
-+	volatile u8 setup_state;			/* infrastructure setup state */
- 	wait_queue_head_t teardown_wq;	/* kthread waiting to teardown infra */
- 	atomic_t references;		/* #of references to infrastructure */
- 
---- 1/arch/ia64/sn/kernel/xpc_channel.c	2005-06-17 15:48:29.000000000 -0400
-+++ 2/arch/ia64/sn/kernel/xpc_channel.c	2005-06-22 15:14:17.000000000 -0400
-@@ -209,7 +209,7 @@ xpc_setup_infrastructure(struct xpc_part
- 	 * With the setting of the partition setup_state to XPC_P_SETUP, we're
- 	 * declaring that this partition is ready to go.
- 	 */
--	(volatile u8) part->setup_state = XPC_P_SETUP;
-+	part->setup_state = XPC_P_SETUP;
- 
- 
- 	/*
-@@ -227,7 +227,7 @@ xpc_setup_infrastructure(struct xpc_part
- 	xpc_vars_part[partid].IPI_phys_cpuid =
- 					cpu_physical_id(smp_processor_id());
- 	xpc_vars_part[partid].nchannels = part->nchannels;
--	(volatile u64) xpc_vars_part[partid].magic = XPC_VP_MAGIC1;
-+	xpc_vars_part[partid].magic = XPC_VP_MAGIC1;
- 
- 	return xpcSuccess;
- }
-@@ -355,7 +355,7 @@ xpc_pull_remote_vars_part(struct xpc_par
- 
- 		/* let the other side know that we've pulled their variables */
- 
--		(volatile u64) xpc_vars_part[partid].magic = XPC_VP_MAGIC2;
-+		xpc_vars_part[partid].magic = XPC_VP_MAGIC2;
- 	}
- 
- 	if (pulled_entry->magic == XPC_VP_MAGIC1) {
-@@ -1183,7 +1183,7 @@ xpc_process_msg_IPI(struct xpc_partition
- 		 */
- 		xpc_clear_local_msgqueue_flags(ch);
- 
--		(volatile s64) ch->w_remote_GP.get = ch->remote_GP.get;
-+		ch->w_remote_GP.get = ch->remote_GP.get;
- 
- 		dev_dbg(xpc_chan, "w_remote_GP.get changed to %ld, partid=%d, "
- 			"channel=%d\n", ch->w_remote_GP.get, ch->partid,
-@@ -1211,7 +1211,7 @@ xpc_process_msg_IPI(struct xpc_partition
- 		 */
- 		xpc_clear_remote_msgqueue_flags(ch);
- 
--		(volatile s64) ch->w_remote_GP.put = ch->remote_GP.put;
-+		ch->w_remote_GP.put = ch->remote_GP.put;
- 
- 		dev_dbg(xpc_chan, "w_remote_GP.put changed to %ld, partid=%d, "
- 			"channel=%d\n", ch->w_remote_GP.put, ch->partid,
-@@ -1875,7 +1875,7 @@ xpc_send_msg(struct xpc_channel *ch, str
- 		notify = &ch->notify_queue[msg_number % ch->local_nentries];
- 		notify->func = func;
- 		notify->key = key;
--		(volatile u8) notify->type = notify_type;
-+		notify->type = notify_type;
- 
- 		// >>> is a mb() needed here?
- 
---- linux-2.6.12/arch/ia64/sn/kernel/xpc.h~	2005-06-22 16:30:55.000000000 -0400
-+++ linux-2.6.12/arch/ia64/sn/kernel/xpc.h	2005-06-22 16:31:04.000000000 -0400
-@@ -87,7 +87,7 @@ struct xpc_rsvd_page {
- 	u8 partid;		/* partition ID from SAL */
- 	u8 version;
- 	u8 pad[6];		/* pad to u64 align */
--	u64 vars_pa;
-+	volatile u64 vars_pa;
- 	u64 part_nasids[XP_NASID_MASK_WORDS] ____cacheline_aligned;
- 	u64 mach_nasids[XP_NASID_MASK_WORDS] ____cacheline_aligned;
- };
---- linux-2.6.12/arch/ia64/sn/kernel/xpc_partition.c~	2005-06-22 16:31:06.000000000 -0400
-+++ linux-2.6.12/arch/ia64/sn/kernel/xpc_partition.c	2005-06-22 16:31:10.000000000 -0400
-@@ -253,7 +253,7 @@ xpc_rsvd_page_init(void)
- 	 * This signifies to the remote partition that our reserved
- 	 * page is initialized.
- 	 */
--	(volatile u64) rp->vars_pa = __pa(xpc_vars);
-+	rp->vars_pa = __pa(xpc_vars);
- 
- 	return rp;
- }
+--- linux-2.6.12/drivers/media/video/Kconfig~	2005-06-27 01:37:39.000000000 -0400
++++ linux-2.6.12/drivers/media/video/Kconfig	2005-06-27 01:37:56.000000000 -0400
+@@ -7,7 +7,7 @@ menu "Video For Linux"
+ 
+ comment "Video Adapters"
+ 
+-config CONFIG_TUNER_MULTI_I2C
++config TUNER_MULTI_I2C
+ 	bool "Enable support for multiple I2C devices on Video Adapters (EXPERIMENTAL)"
+ 	depends on VIDEO_DEV && EXPERIMENTAL
+ 	---help---

linux-2.6.12-tux.patch:
 linux-2.6.12/net/tux/directory.c       |    2 
 linux-2.6.12/net/tux/input.c           |    2 
 linux-2.6.12/net/tux/proto_ftp.c       |    2 
 linux-2.6.12/net/tux/proto_http.c      |    2 
 linux/arch/alpha/kernel/systbls.S      |    8 
 linux/arch/i386/kernel/syscall_table.S |   10 
 linux/arch/ia64/kernel/entry.S         |    8 
 linux/arch/ia64/kernel/ia64_ksyms.c    |    3 
 linux/arch/ppc64/kernel/misc.S         |   20 
 linux/arch/x86_64/ia32/ia32entry.S     |   10 
 linux/fs/dcache.c                      |   36 
 linux/fs/exec.c                        |    2 
 linux/fs/fcntl.c                       |    4 
 linux/fs/namei.c                       |   18 
 linux/fs/namespace.c                   |    2 
 linux/fs/open.c                        |    4 
 linux/fs/pipe.c                        |    2 
 linux/fs/read_write.c                  |    2 
 linux/include/asm-alpha/fcntl.h        |    1 
 linux/include/asm-i386/fcntl.h         |    1 
 linux/include/asm-i386/unistd.h        |    5 
 linux/include/asm-ia64/fcntl.h         |    1 
 linux/include/asm-ia64/unistd.h        |    2 
 linux/include/asm-ppc/fcntl.h          |    1 
 linux/include/asm-ppc64/fcntl.h        |    1 
 linux/include/asm-s390/fcntl.h         |    1 
 linux/include/asm-sparc/fcntl.h        |    1 
 linux/include/asm-sparc64/fcntl.h      |    1 
 linux/include/asm-x86_64/fcntl.h       |    1 
 linux/include/asm-x86_64/unistd.h      |   10 
 linux/include/linux/buffer_head.h      |    1 
 linux/include/linux/dcache.h           |    8 
 linux/include/linux/errno.h            |    3 
 linux/include/linux/file.h             |    2 
 linux/include/linux/fs.h               |    7 
 linux/include/linux/kmod.h             |    1 
 linux/include/linux/namei.h            |    2 
 linux/include/linux/net.h              |    1 
 linux/include/linux/sched.h            |    5 
 linux/include/linux/skbuff.h           |    2 
 linux/include/linux/socket.h           |    5 
 linux/include/linux/sysctl.h           |   50 
 linux/include/net/sock.h               |    6 
 linux/include/net/tcp.h                |    8 
 linux/include/net/tux.h                |  802 ++++++++++++
 linux/include/net/tux_u.h              |  163 ++
 linux/kernel/exit.c                    |   10 
 linux/kernel/fork.c                    |    1 
 linux/kernel/kmod.c                    |   25 
 linux/kernel/signal.c                  |    1 
 linux/mm/filemap.c                     |   19 
 linux/mm/truncate.c                    |    2 
 linux/net/Kconfig                      |    2 
 linux/net/Makefile                     |    1 
 linux/net/ipv4/tcp.c                   |    3 
 linux/net/ipv4/tcp_input.c             |    1 
 linux/net/ipv4/tcp_ipv4.c              |    5 
 linux/net/ipv4/tcp_minisocks.c         |    3 
 linux/net/ipv4/tcp_output.c            |    5 
 linux/net/socket.c                     |  138 +-
 linux/net/tux/Kconfig                  |   25 
 linux/net/tux/Makefile                 |   12 
 linux/net/tux/abuf.c                   |  190 ++
 linux/net/tux/accept.c                 |  859 ++++++++++++
 linux/net/tux/cachemiss.c              |  265 +++
 linux/net/tux/cgi.c                    |  160 ++
 linux/net/tux/directory.c              |  302 ++++
 linux/net/tux/extcgi.c                 |  329 ++++
 linux/net/tux/gzip.c                   |   40 
 linux/net/tux/input.c                  |  640 +++++++++
 linux/net/tux/logger.c                 |  836 ++++++++++++
 linux/net/tux/main.c                   | 1413 +++++++++++++++++++++
 linux/net/tux/mod.c                    |  262 +++
 linux/net/tux/output.c                 |  352 +++++
 linux/net/tux/parser.h                 |  102 +
 linux/net/tux/postpone.c               |   77 +
 linux/net/tux/proc.c                   | 1149 +++++++++++++++++
 linux/net/tux/proto_ftp.c              | 1549 +++++++++++++++++++++++
 linux/net/tux/proto_http.c             | 2197 +++++++++++++++++++++++++++++++++
 linux/net/tux/redirect.c               |  167 ++
 linux/net/tux/times.c                  |  392 +++++
 linux/net/tux/times.h                  |   26 
 linux/net/tux/userspace.c              |   27 
 83 files changed, 12740 insertions(+), 76 deletions(-)

Index: linux-2.6.12-tux.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/linux-2.6.12-tux.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- linux-2.6.12-tux.patch	24 Jun 2005 01:59:33 -0000	1.3
+++ linux-2.6.12-tux.patch	27 Jun 2005 05:54:05 -0000	1.4
@@ -12091,9 +12091,9 @@
 +int __exec_usermodehelper(char *path, char **argv, char **envp)
  {
 -	struct subprocess_info *sub_info = data;
+ 	struct key *old_session;
  	int retval;
  
- 	/* Unblock all signals. */
 @@ -140,12 +139,28 @@ static int ____call_usermodehelper(void 
  	recalc_sigpending();
  	spin_unlock_irq(&current->sighand->siglock);


Index: upstream
===================================================================
RCS file: /cvs/dist/rpms/kernel/devel/upstream,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- upstream	23 Jun 2005 18:06:42 -0000	1.93
+++ upstream	27 Jun 2005 05:54:05 -0000	1.94
@@ -1,2 +1,3 @@
 linux-2.6.12.tar.bz2
 patch-2.6.12-git5.bz2
+patch-2.6.12-git8.bz2




More information about the fedora-cvs-commits mailing list