]> Git Repo - linux.git/commitdiff
x86/process: Re-export start_thread()
authorRian Hunter <[email protected]>
Sun, 19 Aug 2018 23:08:53 +0000 (16:08 -0700)
committerThomas Gleixner <[email protected]>
Mon, 20 Aug 2018 16:04:42 +0000 (18:04 +0200)
The consolidation of the start_thread() functions removed the export
unintentionally. This breaks binfmt handlers built as a module.

Add it back.

Fixes: e634d8fc792c ("x86-64: merge the standard and compat start_thread() functions")
Signed-off-by: Rian Hunter <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Cc: "H. Peter Anvin" <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Vitaly Kuznetsov <[email protected]>
Cc: Joerg Roedel <[email protected]>
Cc: Dmitry Safonov <[email protected]>
Cc: Josh Poimboeuf <[email protected]>
Cc: [email protected]
Link: https://lkml.kernel.org/r/[email protected]
arch/x86/kernel/process_64.c

index 476e3ddf88906d2df48bff128383306271bf14a6..a451bc374b9b3e5001be9978995848946867759b 100644 (file)
@@ -384,6 +384,7 @@ start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
        start_thread_common(regs, new_ip, new_sp,
                            __USER_CS, __USER_DS, 0);
 }
+EXPORT_SYMBOL_GPL(start_thread);
 
 #ifdef CONFIG_COMPAT
 void compat_start_thread(struct pt_regs *regs, u32 new_ip, u32 new_sp)
This page took 0.053212 seconds and 4 git commands to generate.