diff options
author | Tiwei Bie <tiwei.btw@antgroup.com> | 2024-08-26 18:08:13 +0800 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2024-09-12 20:42:22 +0200 |
commit | bf67dbf4f7c0fe61e4e94b30f5913ca1c539f433 (patch) | |
tree | 3ac4f8f6dbd18e3d2436fbf5ed76f82f9f3d4f49 /arch/um/kernel | |
parent | 59376fb2a71b81dfc018db6fe9b6fa9cd3f41ce7 (diff) |
um: Remove the call to SUBARCH_EXECVE1 macro
This macro has never been defined by any supported sub-architectures
in tree since it was introduced by commit 1d3468a6643a ("[PATCH uml:
move _kern.c files").
Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/kernel')
-rw-r--r-- | arch/um/kernel/exec.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/um/kernel/exec.c b/arch/um/kernel/exec.c index 2c15bb2c104c..cb8b5cd9285c 100644 --- a/arch/um/kernel/exec.c +++ b/arch/um/kernel/exec.c @@ -35,8 +35,5 @@ void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp) PT_REGS_IP(regs) = eip; PT_REGS_SP(regs) = esp; clear_thread_flag(TIF_SINGLESTEP); -#ifdef SUBARCH_EXECVE1 - SUBARCH_EXECVE1(regs->regs); -#endif } EXPORT_SYMBOL(start_thread); |