diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-23 04:51:14 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-29 05:43:42 +0100 |
commit | afa86fc426ff7e7f5477f15da9c405d08d5cf790 (patch) | |
tree | 0f82925269757902ce6f7c287a968f7b439d2b2d /arch/x86/kernel/process_64.c | |
parent | bfin: switch to generic vfork, get rid of pointless wrappers (diff) | |
download | linux-afa86fc426ff7e7f5477f15da9c405d08d5cf790.tar.xz linux-afa86fc426ff7e7f5477f15da9c405d08d5cf790.zip |
flagday: don't pass regs to copy_thread()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/kernel/process_64.c')
-rw-r--r-- | arch/x86/kernel/process_64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index 74aac76c6e34..6e68a6194965 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c @@ -146,8 +146,7 @@ static inline u32 read_32bit_tls(struct task_struct *t, int tls) } int copy_thread(unsigned long clone_flags, unsigned long sp, - unsigned long arg, - struct task_struct *p, struct pt_regs *regs) + unsigned long arg, struct task_struct *p) { int err; struct pt_regs *childregs; |