mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	all arches, signal: move restart_block to struct task_struct
If an attacker can cause a controlled kernel stack overflow, overwriting the restart block is a very juicy exploit target. This is because the restart_block is held in the same memory allocation as the kernel stack. Moving the restart block to struct task_struct prevents this exploit by making the restart_block harder to locate. Note that there are other fields in thread_info that are also easy targets, at least on some architectures. It's also a decent simplification, since the restart code is more or less identical on all architectures. [james.hogan@imgtec.com: metag: align thread_info::supervisor_stack] Signed-off-by: Andy Lutomirski <luto@amacapital.net> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Kees Cook <keescook@chromium.org> Cc: David Miller <davem@davemloft.net> Acked-by: Richard Weinberger <richard@nod.at> Cc: Richard Henderson <rth@twiddle.net> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Cc: Matt Turner <mattst88@gmail.com> Cc: Vineet Gupta <vgupta@synopsys.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <will.deacon@arm.com> Cc: Haavard Skinnemoen <hskinnemoen@gmail.com> Cc: Hans-Christian Egtvedt <egtvedt@samfundet.no> Cc: Steven Miao <realmz6@gmail.com> Cc: Mark Salter <msalter@redhat.com> Cc: Aurelien Jacquiot <a-jacquiot@ti.com> Cc: Mikael Starvik <starvik@axis.com> Cc: Jesper Nilsson <jesper.nilsson@axis.com> Cc: David Howells <dhowells@redhat.com> Cc: Richard Kuo <rkuo@codeaurora.org> Cc: "Luck, Tony" <tony.luck@intel.com> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Michal Simek <monstr@monstr.eu> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Jonas Bonn <jonas@southpole.se> Cc: "James E.J. Bottomley" <jejb@parisc-linux.org> Cc: Helge Deller <deller@gmx.de> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc) Tested-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc) Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Chen Liqin <liqin.linux@gmail.com> Cc: Lennox Wu <lennox.wu@gmail.com> Cc: Chris Metcalf <cmetcalf@ezchip.com> Cc: Guan Xuetao <gxt@mprc.pku.edu.cn> Cc: Chris Zankel <chris@zankel.net> Cc: Max Filippov <jcmvbkbc@gmail.com> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Guenter Roeck <linux@roeck-us.net> Signed-off-by: James Hogan <james.hogan@imgtec.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									edc924e023
								
							
						
					
					
						commit
						f56141e3e2
					
				
					 84 changed files with 62 additions and 194 deletions
				
			
		| 
						 | 
					@ -27,8 +27,6 @@ struct thread_info {
 | 
				
			||||||
	int bpt_nsaved;
 | 
						int bpt_nsaved;
 | 
				
			||||||
	unsigned long bpt_addr[2];		/* breakpoint handling  */
 | 
						unsigned long bpt_addr[2];		/* breakpoint handling  */
 | 
				
			||||||
	unsigned int bpt_insn[2];
 | 
						unsigned int bpt_insn[2];
 | 
				
			||||||
 | 
					 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
| 
						 | 
					@ -40,9 +38,6 @@ struct thread_info {
 | 
				
			||||||
	.exec_domain	= &default_exec_domain,	\
 | 
						.exec_domain	= &default_exec_domain,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -150,7 +150,7 @@ restore_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs)
 | 
				
			||||||
	struct switch_stack *sw = (struct switch_stack *)regs - 1;
 | 
						struct switch_stack *sw = (struct switch_stack *)regs - 1;
 | 
				
			||||||
	long i, err = __get_user(regs->pc, &sc->sc_pc);
 | 
						long i, err = __get_user(regs->pc, &sc->sc_pc);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sw->r26 = (unsigned long) ret_from_sys_call;
 | 
						sw->r26 = (unsigned long) ret_from_sys_call;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -46,7 +46,6 @@ struct thread_info {
 | 
				
			||||||
	struct exec_domain *exec_domain;/* execution domain */
 | 
						struct exec_domain *exec_domain;/* execution domain */
 | 
				
			||||||
	__u32 cpu;			/* current CPU */
 | 
						__u32 cpu;			/* current CPU */
 | 
				
			||||||
	unsigned long thr_ptr;		/* TLS ptr */
 | 
						unsigned long thr_ptr;		/* TLS ptr */
 | 
				
			||||||
	struct restart_block restart_block;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
| 
						 | 
					@ -62,9 +61,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu        = 0,			\
 | 
						.cpu        = 0,			\
 | 
				
			||||||
	.preempt_count  = INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count  = INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit = KERNEL_DS,		\
 | 
						.addr_limit = KERNEL_DS,		\
 | 
				
			||||||
	.restart_block  = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info    (init_thread_union.thread_info)
 | 
					#define init_thread_info    (init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -104,7 +104,7 @@ SYSCALL_DEFINE0(rt_sigreturn)
 | 
				
			||||||
	struct pt_regs *regs = current_pt_regs();
 | 
						struct pt_regs *regs = current_pt_regs();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Since we stacked the signal on a word boundary,
 | 
						/* Since we stacked the signal on a word boundary,
 | 
				
			||||||
	 * then 'sp' should be word aligned here.  If it's
 | 
						 * then 'sp' should be word aligned here.  If it's
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -68,7 +68,6 @@ struct thread_info {
 | 
				
			||||||
#ifdef CONFIG_ARM_THUMBEE
 | 
					#ifdef CONFIG_ARM_THUMBEE
 | 
				
			||||||
	unsigned long		thumbee_state;	/* ThumbEE Handler Base register */
 | 
						unsigned long		thumbee_state;	/* ThumbEE Handler Base register */
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define INIT_THREAD_INFO(tsk)						\
 | 
					#define INIT_THREAD_INFO(tsk)						\
 | 
				
			||||||
| 
						 | 
					@ -81,9 +80,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu_domain	= domain_val(DOMAIN_USER, DOMAIN_MANAGER) |	\
 | 
						.cpu_domain	= domain_val(DOMAIN_USER, DOMAIN_MANAGER) |	\
 | 
				
			||||||
			  domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) |	\
 | 
								  domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) |	\
 | 
				
			||||||
			  domain_val(DOMAIN_IO, DOMAIN_CLIENT),		\
 | 
								  domain_val(DOMAIN_IO, DOMAIN_CLIENT),		\
 | 
				
			||||||
	.restart_block	= {						\
 | 
					 | 
				
			||||||
		.fn	= do_no_restart_syscall,			\
 | 
					 | 
				
			||||||
	},								\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -191,7 +191,7 @@ asmlinkage int sys_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	struct sigframe __user *frame;
 | 
						struct sigframe __user *frame;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Since we stacked the signal on a 64-bit boundary,
 | 
						 * Since we stacked the signal on a 64-bit boundary,
 | 
				
			||||||
| 
						 | 
					@ -221,7 +221,7 @@ asmlinkage int sys_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	struct rt_sigframe __user *frame;
 | 
						struct rt_sigframe __user *frame;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Since we stacked the signal on a 64-bit boundary,
 | 
						 * Since we stacked the signal on a 64-bit boundary,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -48,7 +48,6 @@ struct thread_info {
 | 
				
			||||||
	mm_segment_t		addr_limit;	/* address limit */
 | 
						mm_segment_t		addr_limit;	/* address limit */
 | 
				
			||||||
	struct task_struct	*task;		/* main task structure */
 | 
						struct task_struct	*task;		/* main task structure */
 | 
				
			||||||
	struct exec_domain	*exec_domain;	/* execution domain */
 | 
						struct exec_domain	*exec_domain;	/* execution domain */
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
	int			preempt_count;	/* 0 => preemptable, <0 => bug */
 | 
						int			preempt_count;	/* 0 => preemptable, <0 => bug */
 | 
				
			||||||
	int			cpu;		/* cpu */
 | 
						int			cpu;		/* cpu */
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					@ -60,9 +59,6 @@ struct thread_info {
 | 
				
			||||||
	.flags		= 0,						\
 | 
						.flags		= 0,						\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,				\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,				\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,					\
 | 
						.addr_limit	= KERNEL_DS,					\
 | 
				
			||||||
	.restart_block	= {						\
 | 
					 | 
				
			||||||
		.fn	= do_no_restart_syscall,			\
 | 
					 | 
				
			||||||
	},								\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -131,7 +131,7 @@ asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	struct rt_sigframe __user *frame;
 | 
						struct rt_sigframe __user *frame;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Since we stacked the signal on a 128-bit boundary, then 'sp' should
 | 
						 * Since we stacked the signal on a 128-bit boundary, then 'sp' should
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -347,7 +347,7 @@ asmlinkage int compat_sys_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	struct compat_sigframe __user *frame;
 | 
						struct compat_sigframe __user *frame;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Since we stacked the signal on a 64-bit boundary,
 | 
						 * Since we stacked the signal on a 64-bit boundary,
 | 
				
			||||||
| 
						 | 
					@ -381,7 +381,7 @@ asmlinkage int compat_sys_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	struct compat_rt_sigframe __user *frame;
 | 
						struct compat_rt_sigframe __user *frame;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Since we stacked the signal on a 64-bit boundary,
 | 
						 * Since we stacked the signal on a 64-bit boundary,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -30,7 +30,6 @@ struct thread_info {
 | 
				
			||||||
						   saved by debug handler
 | 
											   saved by debug handler
 | 
				
			||||||
						   when setting up
 | 
											   when setting up
 | 
				
			||||||
						   trampoline */
 | 
											   trampoline */
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
	__u8			supervisor_stack[0];
 | 
						__u8			supervisor_stack[0];
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,9 +40,6 @@ struct thread_info {
 | 
				
			||||||
	.flags		= 0,						\
 | 
						.flags		= 0,						\
 | 
				
			||||||
	.cpu		= 0,						\
 | 
						.cpu		= 0,						\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,				\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,				\
 | 
				
			||||||
	.restart_block	= {						\
 | 
					 | 
				
			||||||
		.fn	= do_no_restart_syscall				\
 | 
					 | 
				
			||||||
	}								\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,7 +18,6 @@ void foo(void)
 | 
				
			||||||
	OFFSET(TI_preempt_count, thread_info, preempt_count);
 | 
						OFFSET(TI_preempt_count, thread_info, preempt_count);
 | 
				
			||||||
	OFFSET(TI_rar_saved, thread_info, rar_saved);
 | 
						OFFSET(TI_rar_saved, thread_info, rar_saved);
 | 
				
			||||||
	OFFSET(TI_rsr_saved, thread_info, rsr_saved);
 | 
						OFFSET(TI_rsr_saved, thread_info, rsr_saved);
 | 
				
			||||||
	OFFSET(TI_restart_block, thread_info, restart_block);
 | 
					 | 
				
			||||||
	BLANK();
 | 
						BLANK();
 | 
				
			||||||
	OFFSET(TSK_active_mm, task_struct, active_mm);
 | 
						OFFSET(TSK_active_mm, task_struct, active_mm);
 | 
				
			||||||
	BLANK();
 | 
						BLANK();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -69,7 +69,7 @@ asmlinkage int sys_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	sigset_t set;
 | 
						sigset_t set;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	frame = (struct rt_sigframe __user *)regs->sp;
 | 
						frame = (struct rt_sigframe __user *)regs->sp;
 | 
				
			||||||
	pr_debug("SIG return: frame = %p\n", frame);
 | 
						pr_debug("SIG return: frame = %p\n", frame);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,7 +42,6 @@ struct thread_info {
 | 
				
			||||||
	int cpu;		/* cpu we're on */
 | 
						int cpu;		/* cpu we're on */
 | 
				
			||||||
	int preempt_count;	/* 0 => preemptable, <0 => BUG */
 | 
						int preempt_count;	/* 0 => preemptable, <0 => BUG */
 | 
				
			||||||
	mm_segment_t addr_limit;	/* address limit */
 | 
						mm_segment_t addr_limit;	/* address limit */
 | 
				
			||||||
	struct restart_block restart_block;
 | 
					 | 
				
			||||||
#ifndef CONFIG_SMP
 | 
					#ifndef CONFIG_SMP
 | 
				
			||||||
	struct l1_scratch_task_info l1_task_info;
 | 
						struct l1_scratch_task_info l1_task_info;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					@ -58,9 +57,6 @@ struct thread_info {
 | 
				
			||||||
	.flags		= 0,			\
 | 
						.flags		= 0,			\
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.restart_block	= {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
#define init_stack		(init_thread_union.stack)
 | 
					#define init_stack		(init_thread_union.stack)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -44,7 +44,7 @@ rt_restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc, int *p
 | 
				
			||||||
	int err = 0;
 | 
						int err = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RESTORE(x) err |= __get_user(regs->x, &sc->sc_##x)
 | 
					#define RESTORE(x) err |= __get_user(regs->x, &sc->sc_##x)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -45,7 +45,6 @@ struct thread_info {
 | 
				
			||||||
	int			cpu;		/* cpu we're on */
 | 
						int			cpu;		/* cpu we're on */
 | 
				
			||||||
	int			preempt_count;	/* 0 = preemptable, <0 = BUG */
 | 
						int			preempt_count;	/* 0 = preemptable, <0 = BUG */
 | 
				
			||||||
	mm_segment_t		addr_limit;	/* thread address space */
 | 
						mm_segment_t		addr_limit;	/* thread address space */
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
| 
						 | 
					@ -61,9 +60,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block	= {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -68,7 +68,7 @@ asmlinkage int do_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	sigset_t set;
 | 
						sigset_t set;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Since we stacked the signal on a dword boundary,
 | 
						 * Since we stacked the signal on a dword boundary,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -67,7 +67,7 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
 | 
				
			||||||
	unsigned long old_usp;
 | 
						unsigned long old_usp;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        /* Always make any pending restarted system calls return -EINTR */
 | 
					        /* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* restore the regs from &sc->regs (same as sc, since regs is first)
 | 
						/* restore the regs from &sc->regs (same as sc, since regs is first)
 | 
				
			||||||
	 * (sc is already checked for VERIFY_READ since the sigframe was
 | 
						 * (sc is already checked for VERIFY_READ since the sigframe was
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -59,7 +59,7 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
 | 
				
			||||||
	unsigned long old_usp;
 | 
						unsigned long old_usp;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        /* Always make any pending restarted system calls return -EINTR */
 | 
					        /* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Restore the registers from &sc->regs. sc is already checked
 | 
						 * Restore the registers from &sc->regs. sc is already checked
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -38,7 +38,6 @@ struct thread_info {
 | 
				
			||||||
					 	   0-0xBFFFFFFF for user-thead
 | 
										 	   0-0xBFFFFFFF for user-thead
 | 
				
			||||||
						   0-0xFFFFFFFF for kernel-thread
 | 
											   0-0xFFFFFFFF for kernel-thread
 | 
				
			||||||
						*/
 | 
											*/
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
	__u8			supervisor_stack[0];
 | 
						__u8			supervisor_stack[0];
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -56,9 +55,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,				\
 | 
						.cpu		= 0,				\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,		\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,		\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,			\
 | 
						.addr_limit	= KERNEL_DS,			\
 | 
				
			||||||
	.restart_block = {				\
 | 
					 | 
				
			||||||
		       .fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},						\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,7 +41,6 @@ struct thread_info {
 | 
				
			||||||
						 * 0-0xBFFFFFFF for user-thead
 | 
											 * 0-0xBFFFFFFF for user-thead
 | 
				
			||||||
						 * 0-0xFFFFFFFF for kernel-thread
 | 
											 * 0-0xFFFFFFFF for kernel-thread
 | 
				
			||||||
						 */
 | 
											 */
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	__u8			supervisor_stack[0];
 | 
						__u8			supervisor_stack[0];
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					@ -65,9 +64,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -40,7 +40,6 @@ void foo(void)
 | 
				
			||||||
	OFFSET(TI_CPU,			thread_info, cpu);
 | 
						OFFSET(TI_CPU,			thread_info, cpu);
 | 
				
			||||||
	OFFSET(TI_PREEMPT_COUNT,	thread_info, preempt_count);
 | 
						OFFSET(TI_PREEMPT_COUNT,	thread_info, preempt_count);
 | 
				
			||||||
	OFFSET(TI_ADDR_LIMIT,		thread_info, addr_limit);
 | 
						OFFSET(TI_ADDR_LIMIT,		thread_info, addr_limit);
 | 
				
			||||||
	OFFSET(TI_RESTART_BLOCK,	thread_info, restart_block);
 | 
					 | 
				
			||||||
	BLANK();
 | 
						BLANK();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* offsets into register file storage */
 | 
						/* offsets into register file storage */
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -62,7 +62,7 @@ static int restore_sigcontext(struct sigcontext __user *sc, int *_gr8)
 | 
				
			||||||
	unsigned long tbr, psr;
 | 
						unsigned long tbr, psr;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	tbr = user->i.tbr;
 | 
						tbr = user->i.tbr;
 | 
				
			||||||
	psr = user->i.psr;
 | 
						psr = user->i.psr;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -56,7 +56,6 @@ struct thread_info {
 | 
				
			||||||
	 * used for syscalls somehow;
 | 
						 * used for syscalls somehow;
 | 
				
			||||||
	 * seems to have a function pointer and four arguments
 | 
						 * seems to have a function pointer and four arguments
 | 
				
			||||||
	 */
 | 
						 */
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
	/* Points to the current pt_regs frame  */
 | 
						/* Points to the current pt_regs frame  */
 | 
				
			||||||
	struct pt_regs		*regs;
 | 
						struct pt_regs		*regs;
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
| 
						 | 
					@ -83,9 +82,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu            = 0,                    \
 | 
						.cpu            = 0,                    \
 | 
				
			||||||
	.preempt_count  = 1,                    \
 | 
						.preempt_count  = 1,                    \
 | 
				
			||||||
	.addr_limit     = KERNEL_DS,            \
 | 
						.addr_limit     = KERNEL_DS,            \
 | 
				
			||||||
	.restart_block = {                      \
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,    \
 | 
					 | 
				
			||||||
	},                                      \
 | 
					 | 
				
			||||||
	.sp = 0,				\
 | 
						.sp = 0,				\
 | 
				
			||||||
	.regs = NULL,			\
 | 
						.regs = NULL,			\
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -239,7 +239,7 @@ asmlinkage int sys_rt_sigreturn(void)
 | 
				
			||||||
	sigset_t blocked;
 | 
						sigset_t blocked;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	frame = (struct rt_sigframe __user *)pt_psp(regs);
 | 
						frame = (struct rt_sigframe __user *)pt_psp(regs);
 | 
				
			||||||
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
						if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -27,7 +27,6 @@ struct thread_info {
 | 
				
			||||||
	__u32 status;			/* Thread synchronous flags */
 | 
						__u32 status;			/* Thread synchronous flags */
 | 
				
			||||||
	mm_segment_t addr_limit;	/* user-level address space limit */
 | 
						mm_segment_t addr_limit;	/* user-level address space limit */
 | 
				
			||||||
	int preempt_count;		/* 0=premptable, <0=BUG; will also serve as bh-counter */
 | 
						int preempt_count;		/* 0=premptable, <0=BUG; will also serve as bh-counter */
 | 
				
			||||||
	struct restart_block restart_block;
 | 
					 | 
				
			||||||
#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
 | 
					#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
 | 
				
			||||||
	__u64 ac_stamp;
 | 
						__u64 ac_stamp;
 | 
				
			||||||
	__u64 ac_leave;
 | 
						__u64 ac_leave;
 | 
				
			||||||
| 
						 | 
					@ -46,9 +45,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef ASM_OFFSETS_C
 | 
					#ifndef ASM_OFFSETS_C
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -46,7 +46,7 @@ restore_sigcontext (struct sigcontext __user *sc, struct sigscratch *scr)
 | 
				
			||||||
	long err;
 | 
						long err;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* restore scratch that always needs gets updated during signal delivery: */
 | 
						/* restore scratch that always needs gets updated during signal delivery: */
 | 
				
			||||||
	err  = __get_user(flags, &sc->sc_flags);
 | 
						err  = __get_user(flags, &sc->sc_flags);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -34,7 +34,6 @@ struct thread_info {
 | 
				
			||||||
					 	   0-0xBFFFFFFF for user-thread
 | 
										 	   0-0xBFFFFFFF for user-thread
 | 
				
			||||||
						   0-0xFFFFFFFF for kernel-thread
 | 
											   0-0xFFFFFFFF for kernel-thread
 | 
				
			||||||
						*/
 | 
											*/
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	__u8			supervisor_stack[0];
 | 
						__u8			supervisor_stack[0];
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					@ -49,7 +48,6 @@ struct thread_info {
 | 
				
			||||||
#define TI_CPU		0x00000010
 | 
					#define TI_CPU		0x00000010
 | 
				
			||||||
#define TI_PRE_COUNT	0x00000014
 | 
					#define TI_PRE_COUNT	0x00000014
 | 
				
			||||||
#define TI_ADDR_LIMIT	0x00000018
 | 
					#define TI_ADDR_LIMIT	0x00000018
 | 
				
			||||||
#define TI_RESTART_BLOCK 0x000001C
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -68,9 +66,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -48,7 +48,7 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
 | 
				
			||||||
	unsigned int err = 0;
 | 
						unsigned int err = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define COPY(x)		err |= __get_user(regs->x, &sc->sc_##x)
 | 
					#define COPY(x)		err |= __get_user(regs->x, &sc->sc_##x)
 | 
				
			||||||
	COPY(r4);
 | 
						COPY(r4);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -31,7 +31,6 @@ struct thread_info {
 | 
				
			||||||
	int			preempt_count;	/* 0 => preemptable, <0 => BUG */
 | 
						int			preempt_count;	/* 0 => preemptable, <0 => BUG */
 | 
				
			||||||
	__u32			cpu;		/* should always be 0 on m68k */
 | 
						__u32			cpu;		/* should always be 0 on m68k */
 | 
				
			||||||
	unsigned long		tp_value;	/* thread pointer */
 | 
						unsigned long		tp_value;	/* thread pointer */
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
#endif /* __ASSEMBLY__ */
 | 
					#endif /* __ASSEMBLY__ */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,9 +40,6 @@ struct thread_info {
 | 
				
			||||||
	.exec_domain	= &default_exec_domain,	\
 | 
						.exec_domain	= &default_exec_domain,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_stack		(init_thread_union.stack)
 | 
					#define init_stack		(init_thread_union.stack)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -655,7 +655,7 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *usc, void __u
 | 
				
			||||||
	int err = 0;
 | 
						int err = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* get previous context */
 | 
						/* get previous context */
 | 
				
			||||||
	if (copy_from_user(&context, usc, sizeof(context)))
 | 
						if (copy_from_user(&context, usc, sizeof(context)))
 | 
				
			||||||
| 
						 | 
					@ -693,7 +693,7 @@ rt_restore_ucontext(struct pt_regs *regs, struct switch_stack *sw,
 | 
				
			||||||
	int err;
 | 
						int err;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	err = __get_user(temp, &uc->uc_mcontext.version);
 | 
						err = __get_user(temp, &uc->uc_mcontext.version);
 | 
				
			||||||
	if (temp != MCONTEXT_VERSION)
 | 
						if (temp != MCONTEXT_VERSION)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -35,9 +35,8 @@ struct thread_info {
 | 
				
			||||||
	int preempt_count;	/* 0 => preemptable, <0 => BUG */
 | 
						int preempt_count;	/* 0 => preemptable, <0 => BUG */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	mm_segment_t addr_limit;	/* thread address space */
 | 
						mm_segment_t addr_limit;	/* thread address space */
 | 
				
			||||||
	struct restart_block restart_block;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	u8 supervisor_stack[0];
 | 
						u8 supervisor_stack[0] __aligned(8);
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#else /* !__ASSEMBLY__ */
 | 
					#else /* !__ASSEMBLY__ */
 | 
				
			||||||
| 
						 | 
					@ -74,9 +73,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -48,7 +48,7 @@ static int restore_sigcontext(struct pt_regs *regs,
 | 
				
			||||||
	int err;
 | 
						int err;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	err = metag_gp_regs_copyin(regs, 0, sizeof(struct user_gp_regs), NULL,
 | 
						err = metag_gp_regs_copyin(regs, 0, sizeof(struct user_gp_regs), NULL,
 | 
				
			||||||
				   &sc->regs);
 | 
									   &sc->regs);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -71,7 +71,6 @@ struct thread_info {
 | 
				
			||||||
	__u32			cpu; /* current CPU */
 | 
						__u32			cpu; /* current CPU */
 | 
				
			||||||
	__s32			preempt_count; /* 0 => preemptable,< 0 => BUG*/
 | 
						__s32			preempt_count; /* 0 => preemptable,< 0 => BUG*/
 | 
				
			||||||
	mm_segment_t		addr_limit; /* thread address space */
 | 
						mm_segment_t		addr_limit; /* thread address space */
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	struct cpu_context	cpu_context;
 | 
						struct cpu_context	cpu_context;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					@ -87,9 +86,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -89,7 +89,7 @@ asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	int rval;
 | 
						int rval;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
						if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
				
			||||||
		goto badframe;
 | 
							goto badframe;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -34,7 +34,6 @@ struct thread_info {
 | 
				
			||||||
						 * 0x7fffffff for user-thead
 | 
											 * 0x7fffffff for user-thead
 | 
				
			||||||
						 * 0xffffffff for kernel-thread
 | 
											 * 0xffffffff for kernel-thread
 | 
				
			||||||
						 */
 | 
											 */
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
	struct pt_regs		*regs;
 | 
						struct pt_regs		*regs;
 | 
				
			||||||
	long			syscall;	/* syscall number */
 | 
						long			syscall;	/* syscall number */
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					@ -50,9 +49,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block	= {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -98,7 +98,6 @@ void output_thread_info_defines(void)
 | 
				
			||||||
	OFFSET(TI_CPU, thread_info, cpu);
 | 
						OFFSET(TI_CPU, thread_info, cpu);
 | 
				
			||||||
	OFFSET(TI_PRE_COUNT, thread_info, preempt_count);
 | 
						OFFSET(TI_PRE_COUNT, thread_info, preempt_count);
 | 
				
			||||||
	OFFSET(TI_ADDR_LIMIT, thread_info, addr_limit);
 | 
						OFFSET(TI_ADDR_LIMIT, thread_info, addr_limit);
 | 
				
			||||||
	OFFSET(TI_RESTART_BLOCK, thread_info, restart_block);
 | 
					 | 
				
			||||||
	OFFSET(TI_REGS, thread_info, regs);
 | 
						OFFSET(TI_REGS, thread_info, regs);
 | 
				
			||||||
	DEFINE(_THREAD_SIZE, THREAD_SIZE);
 | 
						DEFINE(_THREAD_SIZE, THREAD_SIZE);
 | 
				
			||||||
	DEFINE(_THREAD_MASK, THREAD_MASK);
 | 
						DEFINE(_THREAD_MASK, THREAD_MASK);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -243,7 +243,7 @@ int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
 | 
				
			||||||
	int i;
 | 
						int i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	err |= __get_user(regs->cp0_epc, &sc->sc_pc);
 | 
						err |= __get_user(regs->cp0_epc, &sc->sc_pc);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -220,7 +220,7 @@ static int restore_sigcontext32(struct pt_regs *regs,
 | 
				
			||||||
	int i;
 | 
						int i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	err |= __get_user(regs->cp0_epc, &sc->sc_pc);
 | 
						err |= __get_user(regs->cp0_epc, &sc->sc_pc);
 | 
				
			||||||
	err |= __get_user(regs->hi, &sc->sc_mdhi);
 | 
						err |= __get_user(regs->hi, &sc->sc_mdhi);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -50,7 +50,6 @@ struct thread_info {
 | 
				
			||||||
						   0-0xBFFFFFFF for user-thead
 | 
											   0-0xBFFFFFFF for user-thead
 | 
				
			||||||
						   0-0xFFFFFFFF for kernel-thread
 | 
											   0-0xFFFFFFFF for kernel-thread
 | 
				
			||||||
						*/
 | 
											*/
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	__u8			supervisor_stack[0];
 | 
						__u8			supervisor_stack[0];
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					@ -80,9 +79,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -28,7 +28,6 @@ void foo(void)
 | 
				
			||||||
	OFFSET(TI_cpu,			thread_info, cpu);
 | 
						OFFSET(TI_cpu,			thread_info, cpu);
 | 
				
			||||||
	OFFSET(TI_preempt_count,	thread_info, preempt_count);
 | 
						OFFSET(TI_preempt_count,	thread_info, preempt_count);
 | 
				
			||||||
	OFFSET(TI_addr_limit,		thread_info, addr_limit);
 | 
						OFFSET(TI_addr_limit,		thread_info, addr_limit);
 | 
				
			||||||
	OFFSET(TI_restart_block,	thread_info, restart_block);
 | 
					 | 
				
			||||||
	BLANK();
 | 
						BLANK();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	OFFSET(REG_D0,			pt_regs, d0);
 | 
						OFFSET(REG_D0,			pt_regs, d0);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -40,7 +40,7 @@ static int restore_sigcontext(struct pt_regs *regs,
 | 
				
			||||||
	unsigned int err = 0;
 | 
						unsigned int err = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (is_using_fpu(current))
 | 
						if (is_using_fpu(current))
 | 
				
			||||||
		fpu_kill_state(current);
 | 
							fpu_kill_state(current);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -57,7 +57,6 @@ struct thread_info {
 | 
				
			||||||
					       0-0x7FFFFFFF for user-thead
 | 
										       0-0x7FFFFFFF for user-thead
 | 
				
			||||||
					       0-0xFFFFFFFF for kernel-thread
 | 
										       0-0xFFFFFFFF for kernel-thread
 | 
				
			||||||
					     */
 | 
										     */
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
	__u8			supervisor_stack[0];
 | 
						__u8			supervisor_stack[0];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* saved context data */
 | 
						/* saved context data */
 | 
				
			||||||
| 
						 | 
					@ -79,9 +78,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,				\
 | 
						.cpu		= 0,				\
 | 
				
			||||||
	.preempt_count	= 1,				\
 | 
						.preempt_count	= 1,				\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,			\
 | 
						.addr_limit	= KERNEL_DS,			\
 | 
				
			||||||
	.restart_block  = {				\
 | 
					 | 
				
			||||||
			  .fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},						\
 | 
					 | 
				
			||||||
	.ksp            = 0,                            \
 | 
						.ksp            = 0,                            \
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -46,7 +46,7 @@ static int restore_sigcontext(struct pt_regs *regs,
 | 
				
			||||||
	int err = 0;
 | 
						int err = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Restore the regs from &sc->regs.
 | 
						 * Restore the regs from &sc->regs.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -14,7 +14,6 @@ struct thread_info {
 | 
				
			||||||
	mm_segment_t addr_limit;	/* user-level address space limit */
 | 
						mm_segment_t addr_limit;	/* user-level address space limit */
 | 
				
			||||||
	__u32 cpu;			/* current CPU */
 | 
						__u32 cpu;			/* current CPU */
 | 
				
			||||||
	int preempt_count;		/* 0=premptable, <0=BUG; will also serve as bh-counter */
 | 
						int preempt_count;		/* 0=premptable, <0=BUG; will also serve as bh-counter */
 | 
				
			||||||
	struct restart_block restart_block;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define INIT_THREAD_INFO(tsk)			\
 | 
					#define INIT_THREAD_INFO(tsk)			\
 | 
				
			||||||
| 
						 | 
					@ -25,9 +24,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
  	.restart_block	= {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall	\
 | 
					 | 
				
			||||||
	}					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info        (init_thread_union.thread_info)
 | 
					#define init_thread_info        (init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -99,7 +99,7 @@ sys_rt_sigreturn(struct pt_regs *regs, int in_syscall)
 | 
				
			||||||
		sigframe_size = PARISC_RT_SIGFRAME_SIZE32;
 | 
							sigframe_size = PARISC_RT_SIGFRAME_SIZE32;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Unwind the user stack to get the rt_sigframe structure. */
 | 
						/* Unwind the user stack to get the rt_sigframe structure. */
 | 
				
			||||||
	frame = (struct rt_sigframe __user *)
 | 
						frame = (struct rt_sigframe __user *)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -43,7 +43,6 @@ struct thread_info {
 | 
				
			||||||
	int		cpu;			/* cpu we're on */
 | 
						int		cpu;			/* cpu we're on */
 | 
				
			||||||
	int		preempt_count;		/* 0 => preemptable,
 | 
						int		preempt_count;		/* 0 => preemptable,
 | 
				
			||||||
						   <0 => BUG */
 | 
											   <0 => BUG */
 | 
				
			||||||
	struct restart_block restart_block;
 | 
					 | 
				
			||||||
	unsigned long	local_flags;		/* private flags for thread */
 | 
						unsigned long	local_flags;		/* private flags for thread */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* low level flags - has atomic operations done on it */
 | 
						/* low level flags - has atomic operations done on it */
 | 
				
			||||||
| 
						 | 
					@ -59,9 +58,6 @@ struct thread_info {
 | 
				
			||||||
	.exec_domain =	&default_exec_domain,	\
 | 
						.exec_domain =	&default_exec_domain,	\
 | 
				
			||||||
	.cpu =		0,			\
 | 
						.cpu =		0,			\
 | 
				
			||||||
	.preempt_count = INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count = INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
	.flags =	0,			\
 | 
						.flags =	0,			\
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1231,7 +1231,7 @@ long sys_rt_sigreturn(int r3, int r4, int r5, int r6, int r7, int r8,
 | 
				
			||||||
	int tm_restore = 0;
 | 
						int tm_restore = 0;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rt_sf = (struct rt_sigframe __user *)
 | 
						rt_sf = (struct rt_sigframe __user *)
 | 
				
			||||||
		(regs->gpr[1] + __SIGNAL_FRAMESIZE + 16);
 | 
							(regs->gpr[1] + __SIGNAL_FRAMESIZE + 16);
 | 
				
			||||||
| 
						 | 
					@ -1504,7 +1504,7 @@ long sys_sigreturn(int r3, int r4, int r5, int r6, int r7, int r8,
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sf = (struct sigframe __user *)(regs->gpr[1] + __SIGNAL_FRAMESIZE);
 | 
						sf = (struct sigframe __user *)(regs->gpr[1] + __SIGNAL_FRAMESIZE);
 | 
				
			||||||
	sc = &sf->sctx;
 | 
						sc = &sf->sctx;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -666,7 +666,7 @@ int sys_rt_sigreturn(unsigned long r3, unsigned long r4, unsigned long r5,
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!access_ok(VERIFY_READ, uc, sizeof(*uc)))
 | 
						if (!access_ok(VERIFY_READ, uc, sizeof(*uc)))
 | 
				
			||||||
		goto badframe;
 | 
							goto badframe;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -39,7 +39,6 @@ struct thread_info {
 | 
				
			||||||
	unsigned long		sys_call_table;	/* System call table address */
 | 
						unsigned long		sys_call_table;	/* System call table address */
 | 
				
			||||||
	unsigned int		cpu;		/* current CPU */
 | 
						unsigned int		cpu;		/* current CPU */
 | 
				
			||||||
	int			preempt_count;	/* 0 => preemptable, <0 => BUG */
 | 
						int			preempt_count;	/* 0 => preemptable, <0 => BUG */
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
	unsigned int		system_call;
 | 
						unsigned int		system_call;
 | 
				
			||||||
	__u64			user_timer;
 | 
						__u64			user_timer;
 | 
				
			||||||
	__u64			system_timer;
 | 
						__u64			system_timer;
 | 
				
			||||||
| 
						 | 
					@ -56,9 +55,6 @@ struct thread_info {
 | 
				
			||||||
	.flags		= 0,			\
 | 
						.flags		= 0,			\
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.restart_block	= {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -209,7 +209,7 @@ static int restore_sigregs32(struct pt_regs *regs,_sigregs32 __user *sregs)
 | 
				
			||||||
	int i;
 | 
						int i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Alwys make any pending restarted system call return -EINTR */
 | 
						/* Alwys make any pending restarted system call return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (__copy_from_user(&user_sregs, &sregs->regs, sizeof(user_sregs)))
 | 
						if (__copy_from_user(&user_sregs, &sregs->regs, sizeof(user_sregs)))
 | 
				
			||||||
		return -EFAULT;
 | 
							return -EFAULT;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -162,7 +162,7 @@ static int restore_sigregs(struct pt_regs *regs, _sigregs __user *sregs)
 | 
				
			||||||
	_sigregs user_sregs;
 | 
						_sigregs user_sregs;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Alwys make any pending restarted system call return -EINTR */
 | 
						/* Alwys make any pending restarted system call return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (__copy_from_user(&user_sregs, sregs, sizeof(user_sregs)))
 | 
						if (__copy_from_user(&user_sregs, sregs, sizeof(user_sregs)))
 | 
				
			||||||
		return -EFAULT;
 | 
							return -EFAULT;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,7 +42,6 @@ struct thread_info {
 | 
				
			||||||
	 * 0-0xFFFFFFFF for kernel-thread
 | 
						 * 0-0xFFFFFFFF for kernel-thread
 | 
				
			||||||
	 */
 | 
						 */
 | 
				
			||||||
	mm_segment_t		addr_limit;
 | 
						mm_segment_t		addr_limit;
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
	struct pt_regs		*regs;
 | 
						struct pt_regs		*regs;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -58,9 +57,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= 1,			\
 | 
						.preempt_count	= 1,			\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block	= {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -106,7 +106,6 @@ void output_thread_info_defines(void)
 | 
				
			||||||
	OFFSET(TI_CPU, thread_info, cpu);
 | 
						OFFSET(TI_CPU, thread_info, cpu);
 | 
				
			||||||
	OFFSET(TI_PRE_COUNT, thread_info, preempt_count);
 | 
						OFFSET(TI_PRE_COUNT, thread_info, preempt_count);
 | 
				
			||||||
	OFFSET(TI_ADDR_LIMIT, thread_info, addr_limit);
 | 
						OFFSET(TI_ADDR_LIMIT, thread_info, addr_limit);
 | 
				
			||||||
	OFFSET(TI_RESTART_BLOCK, thread_info, restart_block);
 | 
					 | 
				
			||||||
	OFFSET(TI_REGS, thread_info, regs);
 | 
						OFFSET(TI_REGS, thread_info, regs);
 | 
				
			||||||
	DEFINE(KERNEL_STACK_SIZE, THREAD_SIZE);
 | 
						DEFINE(KERNEL_STACK_SIZE, THREAD_SIZE);
 | 
				
			||||||
	DEFINE(KERNEL_STACK_MASK, THREAD_MASK);
 | 
						DEFINE(KERNEL_STACK_MASK, THREAD_MASK);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -141,7 +141,7 @@ score_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	int sig;
 | 
						int sig;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	frame = (struct rt_sigframe __user *) regs->regs[0];
 | 
						frame = (struct rt_sigframe __user *) regs->regs[0];
 | 
				
			||||||
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
						if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -33,7 +33,6 @@ struct thread_info {
 | 
				
			||||||
	__u32			cpu;
 | 
						__u32			cpu;
 | 
				
			||||||
	int			preempt_count; /* 0 => preemptable, <0 => BUG */
 | 
						int			preempt_count; /* 0 => preemptable, <0 => BUG */
 | 
				
			||||||
	mm_segment_t		addr_limit;	/* thread address space */
 | 
						mm_segment_t		addr_limit;	/* thread address space */
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
	unsigned long		previous_sp;	/* sp of previous stack in case
 | 
						unsigned long		previous_sp;	/* sp of previous stack in case
 | 
				
			||||||
						   of nested IRQ stacks */
 | 
											   of nested IRQ stacks */
 | 
				
			||||||
	__u8			supervisor_stack[0];
 | 
						__u8			supervisor_stack[0];
 | 
				
			||||||
| 
						 | 
					@ -63,9 +62,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block	= {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -25,7 +25,6 @@ int main(void)
 | 
				
			||||||
	DEFINE(TI_FLAGS,	offsetof(struct thread_info, flags));
 | 
						DEFINE(TI_FLAGS,	offsetof(struct thread_info, flags));
 | 
				
			||||||
	DEFINE(TI_CPU,		offsetof(struct thread_info, cpu));
 | 
						DEFINE(TI_CPU,		offsetof(struct thread_info, cpu));
 | 
				
			||||||
	DEFINE(TI_PRE_COUNT,	offsetof(struct thread_info, preempt_count));
 | 
						DEFINE(TI_PRE_COUNT,	offsetof(struct thread_info, preempt_count));
 | 
				
			||||||
	DEFINE(TI_RESTART_BLOCK,offsetof(struct thread_info, restart_block));
 | 
					 | 
				
			||||||
	DEFINE(TI_SIZE,		sizeof(struct thread_info));
 | 
						DEFINE(TI_SIZE,		sizeof(struct thread_info));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef CONFIG_HIBERNATION
 | 
					#ifdef CONFIG_HIBERNATION
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -156,7 +156,7 @@ asmlinkage int sys_sigreturn(void)
 | 
				
			||||||
	int r0;
 | 
						int r0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        /* Always make any pending restarted system calls return -EINTR */
 | 
					        /* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
						if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
				
			||||||
		goto badframe;
 | 
							goto badframe;
 | 
				
			||||||
| 
						 | 
					@ -186,7 +186,7 @@ asmlinkage int sys_rt_sigreturn(void)
 | 
				
			||||||
	int r0;
 | 
						int r0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
						if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
				
			||||||
		goto badframe;
 | 
							goto badframe;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -260,7 +260,7 @@ asmlinkage int sys_sigreturn(unsigned long r2, unsigned long r3,
 | 
				
			||||||
	long long ret;
 | 
						long long ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
						if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
				
			||||||
		goto badframe;
 | 
							goto badframe;
 | 
				
			||||||
| 
						 | 
					@ -294,7 +294,7 @@ asmlinkage int sys_rt_sigreturn(unsigned long r2, unsigned long r3,
 | 
				
			||||||
	long long ret;
 | 
						long long ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
						if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
 | 
				
			||||||
		goto badframe;
 | 
							goto badframe;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -47,8 +47,6 @@ struct thread_info {
 | 
				
			||||||
	struct reg_window32	reg_window[NSWINS];	/* align for ldd! */
 | 
						struct reg_window32	reg_window[NSWINS];	/* align for ldd! */
 | 
				
			||||||
	unsigned long		rwbuf_stkptrs[NSWINS];
 | 
						unsigned long		rwbuf_stkptrs[NSWINS];
 | 
				
			||||||
	unsigned long		w_saved;
 | 
						unsigned long		w_saved;
 | 
				
			||||||
 | 
					 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
| 
						 | 
					@ -62,9 +60,6 @@ struct thread_info {
 | 
				
			||||||
	.flags		=	0,			\
 | 
						.flags		=	0,			\
 | 
				
			||||||
	.cpu		=	0,			\
 | 
						.cpu		=	0,			\
 | 
				
			||||||
	.preempt_count	=	INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	=	INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.restart_block	= {				\
 | 
					 | 
				
			||||||
		.fn	=	do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},						\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					@ -103,7 +98,6 @@ register struct thread_info *current_thread_info_reg asm("g6");
 | 
				
			||||||
#define TI_REG_WINDOW	0x30
 | 
					#define TI_REG_WINDOW	0x30
 | 
				
			||||||
#define TI_RWIN_SPTRS	0x230
 | 
					#define TI_RWIN_SPTRS	0x230
 | 
				
			||||||
#define TI_W_SAVED	0x250
 | 
					#define TI_W_SAVED	0x250
 | 
				
			||||||
/* #define TI_RESTART_BLOCK 0x25n */ /* Nobody cares */
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * thread information flag bit numbers
 | 
					 * thread information flag bit numbers
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -58,8 +58,6 @@ struct thread_info {
 | 
				
			||||||
	unsigned long		gsr[7];
 | 
						unsigned long		gsr[7];
 | 
				
			||||||
	unsigned long		xfsr[7];
 | 
						unsigned long		xfsr[7];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	struct pt_regs		*kern_una_regs;
 | 
						struct pt_regs		*kern_una_regs;
 | 
				
			||||||
	unsigned int		kern_una_insn;
 | 
						unsigned int		kern_una_insn;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -92,10 +90,9 @@ struct thread_info {
 | 
				
			||||||
#define TI_RWIN_SPTRS	0x000003c8
 | 
					#define TI_RWIN_SPTRS	0x000003c8
 | 
				
			||||||
#define TI_GSR		0x00000400
 | 
					#define TI_GSR		0x00000400
 | 
				
			||||||
#define TI_XFSR		0x00000438
 | 
					#define TI_XFSR		0x00000438
 | 
				
			||||||
#define TI_RESTART_BLOCK 0x00000470
 | 
					#define TI_KUNA_REGS	0x00000470
 | 
				
			||||||
#define TI_KUNA_REGS	0x000004a0
 | 
					#define TI_KUNA_INSN	0x00000478
 | 
				
			||||||
#define TI_KUNA_INSN	0x000004a8
 | 
					#define TI_FPREGS	0x00000480
 | 
				
			||||||
#define TI_FPREGS	0x000004c0
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* We embed this in the uppermost byte of thread_info->flags */
 | 
					/* We embed this in the uppermost byte of thread_info->flags */
 | 
				
			||||||
#define FAULT_CODE_WRITE	0x01	/* Write access, implies D-TLB	   */
 | 
					#define FAULT_CODE_WRITE	0x01	/* Write access, implies D-TLB	   */
 | 
				
			||||||
| 
						 | 
					@ -124,9 +121,6 @@ struct thread_info {
 | 
				
			||||||
	.current_ds	=	ASI_P,			\
 | 
						.current_ds	=	ASI_P,			\
 | 
				
			||||||
	.exec_domain	=	&default_exec_domain,	\
 | 
						.exec_domain	=	&default_exec_domain,	\
 | 
				
			||||||
	.preempt_count	=	INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	=	INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.restart_block	= {				\
 | 
					 | 
				
			||||||
		.fn	=	do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},						\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -150,7 +150,7 @@ void do_sigreturn32(struct pt_regs *regs)
 | 
				
			||||||
	int err, i;
 | 
						int err, i;
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	synchronize_user_stack();
 | 
						synchronize_user_stack();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -235,7 +235,7 @@ asmlinkage void do_rt_sigreturn32(struct pt_regs *regs)
 | 
				
			||||||
	int err, i;
 | 
						int err, i;
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	synchronize_user_stack();
 | 
						synchronize_user_stack();
 | 
				
			||||||
	regs->u_regs[UREG_FP] &= 0x00000000ffffffffUL;
 | 
						regs->u_regs[UREG_FP] &= 0x00000000ffffffffUL;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -70,7 +70,7 @@ asmlinkage void do_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	int err;
 | 
						int err;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	synchronize_user_stack();
 | 
						synchronize_user_stack();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -254,7 +254,7 @@ void do_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	int err;
 | 
						int err;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	synchronize_user_stack ();
 | 
						synchronize_user_stack ();
 | 
				
			||||||
	sf = (struct rt_signal_frame __user *)
 | 
						sf = (struct rt_signal_frame __user *)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2730,8 +2730,6 @@ void __init trap_init(void)
 | 
				
			||||||
		     TI_NEW_CHILD != offsetof(struct thread_info, new_child) ||
 | 
							     TI_NEW_CHILD != offsetof(struct thread_info, new_child) ||
 | 
				
			||||||
		     TI_CURRENT_DS != offsetof(struct thread_info,
 | 
							     TI_CURRENT_DS != offsetof(struct thread_info,
 | 
				
			||||||
						current_ds) ||
 | 
											current_ds) ||
 | 
				
			||||||
		     TI_RESTART_BLOCK != offsetof(struct thread_info,
 | 
					 | 
				
			||||||
						  restart_block) ||
 | 
					 | 
				
			||||||
		     TI_KUNA_REGS != offsetof(struct thread_info,
 | 
							     TI_KUNA_REGS != offsetof(struct thread_info,
 | 
				
			||||||
					      kern_una_regs) ||
 | 
										      kern_una_regs) ||
 | 
				
			||||||
		     TI_KUNA_INSN != offsetof(struct thread_info,
 | 
							     TI_KUNA_INSN != offsetof(struct thread_info,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -36,7 +36,6 @@ struct thread_info {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	mm_segment_t		addr_limit;	/* thread address space
 | 
						mm_segment_t		addr_limit;	/* thread address space
 | 
				
			||||||
						   (KERNEL_DS or USER_DS) */
 | 
											   (KERNEL_DS or USER_DS) */
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
	struct single_step_state *step_state;	/* single step state
 | 
						struct single_step_state *step_state;	/* single step state
 | 
				
			||||||
						   (if non-zero) */
 | 
											   (if non-zero) */
 | 
				
			||||||
	int			align_ctl;	/* controls unaligned access */
 | 
						int			align_ctl;	/* controls unaligned access */
 | 
				
			||||||
| 
						 | 
					@ -57,9 +56,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block	= {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
	.step_state	= NULL,			\
 | 
						.step_state	= NULL,			\
 | 
				
			||||||
	.align_ctl	= 0,			\
 | 
						.align_ctl	= 0,			\
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -48,7 +48,7 @@ int restore_sigcontext(struct pt_regs *regs,
 | 
				
			||||||
	int err;
 | 
						int err;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Enforce that sigcontext is like pt_regs, and doesn't mess
 | 
						 * Enforce that sigcontext is like pt_regs, and doesn't mess
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -22,7 +22,6 @@ struct thread_info {
 | 
				
			||||||
	mm_segment_t		addr_limit;	/* thread address space:
 | 
						mm_segment_t		addr_limit;	/* thread address space:
 | 
				
			||||||
					 	   0-0xBFFFFFFF for user
 | 
										 	   0-0xBFFFFFFF for user
 | 
				
			||||||
						   0-0xFFFFFFFF for kernel */
 | 
											   0-0xFFFFFFFF for kernel */
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
	struct thread_info	*real_thread;    /* Points to non-IRQ stack */
 | 
						struct thread_info	*real_thread;    /* Points to non-IRQ stack */
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -34,9 +33,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu =		0,			\
 | 
						.cpu =		0,			\
 | 
				
			||||||
	.preempt_count = INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count = INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit =	KERNEL_DS,		\
 | 
						.addr_limit =	KERNEL_DS,		\
 | 
				
			||||||
	.restart_block =  {			\
 | 
					 | 
				
			||||||
		.fn =  do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
	.real_thread = NULL,			\
 | 
						.real_thread = NULL,			\
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -79,7 +79,6 @@ struct thread_info {
 | 
				
			||||||
#ifdef CONFIG_UNICORE_FPU_F64
 | 
					#ifdef CONFIG_UNICORE_FPU_F64
 | 
				
			||||||
	struct fp_state		fpstate __attribute__((aligned(8)));
 | 
						struct fp_state		fpstate __attribute__((aligned(8)));
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
	struct restart_block	restart_block;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define INIT_THREAD_INFO(tsk)						\
 | 
					#define INIT_THREAD_INFO(tsk)						\
 | 
				
			||||||
| 
						 | 
					@ -89,9 +88,6 @@ struct thread_info {
 | 
				
			||||||
	.flags		= 0,						\
 | 
						.flags		= 0,						\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,				\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,				\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,					\
 | 
						.addr_limit	= KERNEL_DS,					\
 | 
				
			||||||
	.restart_block	= {						\
 | 
					 | 
				
			||||||
		.fn	= do_no_restart_syscall,			\
 | 
					 | 
				
			||||||
	},								\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -105,7 +105,7 @@ asmlinkage int __sys_rt_sigreturn(struct pt_regs *regs)
 | 
				
			||||||
	struct rt_sigframe __user *frame;
 | 
						struct rt_sigframe __user *frame;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * Since we stacked the signal on a 64-bit boundary,
 | 
						 * Since we stacked the signal on a 64-bit boundary,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -169,7 +169,7 @@ static int ia32_restore_sigcontext(struct pt_regs *regs,
 | 
				
			||||||
	u32 tmp;
 | 
						u32 tmp;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	get_user_try {
 | 
						get_user_try {
 | 
				
			||||||
		/*
 | 
							/*
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -31,7 +31,6 @@ struct thread_info {
 | 
				
			||||||
	__u32			cpu;		/* current CPU */
 | 
						__u32			cpu;		/* current CPU */
 | 
				
			||||||
	int			saved_preempt_count;
 | 
						int			saved_preempt_count;
 | 
				
			||||||
	mm_segment_t		addr_limit;
 | 
						mm_segment_t		addr_limit;
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
	void __user		*sysenter_return;
 | 
						void __user		*sysenter_return;
 | 
				
			||||||
	unsigned int		sig_on_uaccess_error:1;
 | 
						unsigned int		sig_on_uaccess_error:1;
 | 
				
			||||||
	unsigned int		uaccess_err:1;	/* uaccess failed */
 | 
						unsigned int		uaccess_err:1;	/* uaccess failed */
 | 
				
			||||||
| 
						 | 
					@ -45,9 +44,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.saved_preempt_count = INIT_PREEMPT_COUNT,	\
 | 
						.saved_preempt_count = INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -69,7 +69,7 @@ int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
 | 
				
			||||||
	unsigned int err = 0;
 | 
						unsigned int err = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	get_user_try {
 | 
						get_user_try {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -157,7 +157,7 @@ static int copy_sc_from_user(struct pt_regs *regs,
 | 
				
			||||||
	int err, pid;
 | 
						int err, pid;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	err = copy_from_user(&sc, from, sizeof(sc));
 | 
						err = copy_from_user(&sc, from, sizeof(sc));
 | 
				
			||||||
	if (err)
 | 
						if (err)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -51,7 +51,6 @@ struct thread_info {
 | 
				
			||||||
	__s32			preempt_count;	/* 0 => preemptable,< 0 => BUG*/
 | 
						__s32			preempt_count;	/* 0 => preemptable,< 0 => BUG*/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	mm_segment_t		addr_limit;	/* thread address space */
 | 
						mm_segment_t		addr_limit;	/* thread address space */
 | 
				
			||||||
	struct restart_block    restart_block;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	unsigned long		cpenable;
 | 
						unsigned long		cpenable;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -72,7 +71,6 @@ struct thread_info {
 | 
				
			||||||
#define TI_CPU		 0x00000010
 | 
					#define TI_CPU		 0x00000010
 | 
				
			||||||
#define TI_PRE_COUNT	 0x00000014
 | 
					#define TI_PRE_COUNT	 0x00000014
 | 
				
			||||||
#define TI_ADDR_LIMIT	 0x00000018
 | 
					#define TI_ADDR_LIMIT	 0x00000018
 | 
				
			||||||
#define TI_RESTART_BLOCK 0x000001C
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -90,9 +88,6 @@ struct thread_info {
 | 
				
			||||||
	.cpu		= 0,			\
 | 
						.cpu		= 0,			\
 | 
				
			||||||
	.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
						.preempt_count	= INIT_PREEMPT_COUNT,	\
 | 
				
			||||||
	.addr_limit	= KERNEL_DS,		\
 | 
						.addr_limit	= KERNEL_DS,		\
 | 
				
			||||||
	.restart_block = {			\
 | 
					 | 
				
			||||||
		.fn = do_no_restart_syscall,	\
 | 
					 | 
				
			||||||
	},					\
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define init_thread_info	(init_thread_union.thread_info)
 | 
					#define init_thread_info	(init_thread_union.thread_info)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -245,7 +245,7 @@ asmlinkage long xtensa_rt_sigreturn(long a0, long a1, long a2, long a3,
 | 
				
			||||||
	int ret;
 | 
						int ret;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Always make any pending restarted system calls return -EINTR */
 | 
						/* Always make any pending restarted system calls return -EINTR */
 | 
				
			||||||
	current_thread_info()->restart_block.fn = do_no_restart_syscall;
 | 
						current->restart_block.fn = do_no_restart_syscall;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (regs->depc > 64)
 | 
						if (regs->depc > 64)
 | 
				
			||||||
		panic("rt_sigreturn in double exception!\n");
 | 
							panic("rt_sigreturn in double exception!\n");
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -971,7 +971,7 @@ SYSCALL_DEFINE3(poll, struct pollfd __user *, ufds, unsigned int, nfds,
 | 
				
			||||||
	if (ret == -EINTR) {
 | 
						if (ret == -EINTR) {
 | 
				
			||||||
		struct restart_block *restart_block;
 | 
							struct restart_block *restart_block;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		restart_block = ¤t_thread_info()->restart_block;
 | 
							restart_block = ¤t->restart_block;
 | 
				
			||||||
		restart_block->fn = do_restart_poll;
 | 
							restart_block->fn = do_restart_poll;
 | 
				
			||||||
		restart_block->poll.ufds = ufds;
 | 
							restart_block->poll.ufds = ufds;
 | 
				
			||||||
		restart_block->poll.nfds = nfds;
 | 
							restart_block->poll.nfds = nfds;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -193,6 +193,9 @@ extern struct task_group root_task_group;
 | 
				
			||||||
	.nr_cpus_allowed= NR_CPUS,					\
 | 
						.nr_cpus_allowed= NR_CPUS,					\
 | 
				
			||||||
	.mm		= NULL,						\
 | 
						.mm		= NULL,						\
 | 
				
			||||||
	.active_mm	= &init_mm,					\
 | 
						.active_mm	= &init_mm,					\
 | 
				
			||||||
 | 
						.restart_block = {						\
 | 
				
			||||||
 | 
							.fn = do_no_restart_syscall,				\
 | 
				
			||||||
 | 
						},								\
 | 
				
			||||||
	.se		= {						\
 | 
						.se		= {						\
 | 
				
			||||||
		.group_node 	= LIST_HEAD_INIT(tsk.se.group_node),	\
 | 
							.group_node 	= LIST_HEAD_INIT(tsk.se.group_node),	\
 | 
				
			||||||
	},								\
 | 
						},								\
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1370,6 +1370,8 @@ struct task_struct {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	unsigned long atomic_flags; /* Flags needing atomic access. */
 | 
						unsigned long atomic_flags; /* Flags needing atomic access. */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						struct restart_block restart_block;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	pid_t pid;
 | 
						pid_t pid;
 | 
				
			||||||
	pid_t tgid;
 | 
						pid_t tgid;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -276,8 +276,7 @@ COMPAT_SYSCALL_DEFINE2(nanosleep, struct compat_timespec __user *, rqtp,
 | 
				
			||||||
	 * core implementation decides to return random nonsense.
 | 
						 * core implementation decides to return random nonsense.
 | 
				
			||||||
	 */
 | 
						 */
 | 
				
			||||||
	if (ret == -ERESTART_RESTARTBLOCK) {
 | 
						if (ret == -ERESTART_RESTARTBLOCK) {
 | 
				
			||||||
		struct restart_block *restart
 | 
							struct restart_block *restart = ¤t->restart_block;
 | 
				
			||||||
			= ¤t_thread_info()->restart_block;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
		restart->fn = compat_nanosleep_restart;
 | 
							restart->fn = compat_nanosleep_restart;
 | 
				
			||||||
		restart->nanosleep.compat_rmtp = rmtp;
 | 
							restart->nanosleep.compat_rmtp = rmtp;
 | 
				
			||||||
| 
						 | 
					@ -860,7 +859,7 @@ COMPAT_SYSCALL_DEFINE4(clock_nanosleep, clockid_t, which_clock, int, flags,
 | 
				
			||||||
		return -EFAULT;
 | 
							return -EFAULT;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (err == -ERESTART_RESTARTBLOCK) {
 | 
						if (err == -ERESTART_RESTARTBLOCK) {
 | 
				
			||||||
		restart = ¤t_thread_info()->restart_block;
 | 
							restart = ¤t->restart_block;
 | 
				
			||||||
		restart->fn = compat_clock_nanosleep_restart;
 | 
							restart->fn = compat_clock_nanosleep_restart;
 | 
				
			||||||
		restart->nanosleep.compat_rmtp = rmtp;
 | 
							restart->nanosleep.compat_rmtp = rmtp;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2217,7 +2217,7 @@ static int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val,
 | 
				
			||||||
	if (!abs_time)
 | 
						if (!abs_time)
 | 
				
			||||||
		goto out;
 | 
							goto out;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	restart = ¤t_thread_info()->restart_block;
 | 
						restart = ¤t->restart_block;
 | 
				
			||||||
	restart->fn = futex_wait_restart;
 | 
						restart->fn = futex_wait_restart;
 | 
				
			||||||
	restart->futex.uaddr = uaddr;
 | 
						restart->futex.uaddr = uaddr;
 | 
				
			||||||
	restart->futex.val = val;
 | 
						restart->futex.val = val;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2501,7 +2501,7 @@ EXPORT_SYMBOL(unblock_all_signals);
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
SYSCALL_DEFINE0(restart_syscall)
 | 
					SYSCALL_DEFINE0(restart_syscall)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct restart_block *restart = ¤t_thread_info()->restart_block;
 | 
						struct restart_block *restart = ¤t->restart_block;
 | 
				
			||||||
	return restart->fn(restart);
 | 
						return restart->fn(restart);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -788,7 +788,7 @@ static int alarm_timer_nsleep(const clockid_t which_clock, int flags,
 | 
				
			||||||
			goto out;
 | 
								goto out;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	restart = ¤t_thread_info()->restart_block;
 | 
						restart = ¤t->restart_block;
 | 
				
			||||||
	restart->fn = alarm_timer_nsleep_restart;
 | 
						restart->fn = alarm_timer_nsleep_restart;
 | 
				
			||||||
	restart->nanosleep.clockid = type;
 | 
						restart->nanosleep.clockid = type;
 | 
				
			||||||
	restart->nanosleep.expires = exp.tv64;
 | 
						restart->nanosleep.expires = exp.tv64;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1583,7 +1583,7 @@ long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
 | 
				
			||||||
			goto out;
 | 
								goto out;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	restart = ¤t_thread_info()->restart_block;
 | 
						restart = ¤t->restart_block;
 | 
				
			||||||
	restart->fn = hrtimer_nanosleep_restart;
 | 
						restart->fn = hrtimer_nanosleep_restart;
 | 
				
			||||||
	restart->nanosleep.clockid = t.timer.base->clockid;
 | 
						restart->nanosleep.clockid = t.timer.base->clockid;
 | 
				
			||||||
	restart->nanosleep.rmtp = rmtp;
 | 
						restart->nanosleep.rmtp = rmtp;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1334,8 +1334,7 @@ static long posix_cpu_nsleep_restart(struct restart_block *restart_block);
 | 
				
			||||||
static int posix_cpu_nsleep(const clockid_t which_clock, int flags,
 | 
					static int posix_cpu_nsleep(const clockid_t which_clock, int flags,
 | 
				
			||||||
			    struct timespec *rqtp, struct timespec __user *rmtp)
 | 
								    struct timespec *rqtp, struct timespec __user *rmtp)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct restart_block *restart_block =
 | 
						struct restart_block *restart_block = ¤t->restart_block;
 | 
				
			||||||
		¤t_thread_info()->restart_block;
 | 
					 | 
				
			||||||
	struct itimerspec it;
 | 
						struct itimerspec it;
 | 
				
			||||||
	int error;
 | 
						int error;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue