diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2012-09-20 09:28:25 -0400 | 
|---|---|---|
| committer | Richard Weinberger <richard@nod.at> | 2012-09-27 18:04:55 +0200 | 
| commit | d2ce4e92fa4f79a5fdb4cc912b411280afe21697 (patch) | |
| tree | d7b1cae518d150b30342cef8dfa1a76e82005d25 /arch/um/include/asm/processor-generic.h | |
| parent | f9a38eace4498a5e9f6d2cdfc879d5444edc3a5f (diff) | |
| download | olio-linux-3.10-d2ce4e92fa4f79a5fdb4cc912b411280afe21697.tar.xz olio-linux-3.10-d2ce4e92fa4f79a5fdb4cc912b411280afe21697.zip  | |
um: kill thread->forking
we only use that to tell copy_thread() done by syscall from that
done by kernel_thread().  However, it's easier to do simply by
checking PF_KTHREAD in thread flags.
Merge sys_clone() guts for 32bit and 64bit, while we are at it...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/um/include/asm/processor-generic.h')
| -rw-r--r-- | arch/um/include/asm/processor-generic.h | 9 | 
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/um/include/asm/processor-generic.h b/arch/um/include/asm/processor-generic.h index 69f1c57a8d0..33a6a2423bd 100644 --- a/arch/um/include/asm/processor-generic.h +++ b/arch/um/include/asm/processor-generic.h @@ -20,14 +20,6 @@ struct mm_struct;  struct thread_struct {  	struct task_struct *saved_task; -	/* -	 * This flag is set to 1 before calling do_fork (and analyzed in -	 * copy_thread) to mark that we are begin called from userspace (fork / -	 * vfork / clone), and reset to 0 after. It is left to 0 when called -	 * from kernelspace (i.e. kernel_thread() or fork_idle(), -	 * as of 2.6.11). -	 */ -	int forking;  	struct pt_regs regs;  	int singlestep_syscall;  	void *fault_addr; @@ -58,7 +50,6 @@ struct thread_struct {  #define INIT_THREAD \  { \ -	.forking		= 0, \  	.regs		   	= EMPTY_REGS,	\  	.fault_addr		= NULL, \  	.prev_sched		= NULL, \  |