Re: [PATCH 17/17] arch: rename copy_thread_tls() back to copy_thread()
From: Stafford Horne <shorne@gmail.com>
Date: 2020-06-25 21:37:55
Also in:
linux-alpha, linux-riscv, linux-um
From: Stafford Horne <shorne@gmail.com>
Date: 2020-06-25 21:37:55
Also in:
linux-alpha, linux-riscv, linux-um
On Tue, Jun 23, 2020 at 01:43:26AM +0200, Christian Brauner wrote:
diff --git a/arch/openrisc/kernel/process.c b/arch/openrisc/kernel/process.c index d7010e72450c..19045a3efb8a 100644 --- a/arch/openrisc/kernel/process.c +++ b/arch/openrisc/kernel/process.c@@ -116,7 +116,7 @@ void release_thread(struct task_struct *dead_task) extern asmlinkage void ret_from_fork(void); /* - * copy_thread_tls + * copy_thread * @clone_flags: flags * @usp: user stack pointer or fn for kernel thread * @arg: arg to fn for kernel thread; always NULL for userspace thread@@ -147,7 +147,7 @@ extern asmlinkage void ret_from_fork(void); */ int -copy_thread_tls(unsigned long clone_flags, unsigned long usp, +copy_thread(unsigned long clone_flags, unsigned long usp, unsigned long arg, struct task_struct *p, unsigned long tls) {
For the OpenRISC bit. Acked-by: Stafford Horne <shorne@gmail.com> Also, I would agree with what Kees mentioned about aligning the parameters. Sure that would be more work but it would be appreciated. -Stafford