diff options
author | Andi Kleen <ak@linux.intel.com> | 2013-08-05 15:02:39 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2013-08-06 14:18:30 -0700 |
commit | 35ea7903b8a97162e38da9da3b560df74713321d (patch) | |
tree | ecf6c69d177e9ec3b457a9a2c7db327ffeb2940c /arch/x86/kernel/process_64.c | |
parent | a1ed4ddfb780910c1bb1e9df9cfc87454b607489 (diff) | |
download | blackbird-op-linux-35ea7903b8a97162e38da9da3b560df74713321d.tar.gz blackbird-op-linux-35ea7903b8a97162e38da9da3b560df74713321d.zip |
x86, asmlinkage: Make 32bit/64bit __switch_to visible
This function is called from inline assembler, so has to be visible.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Link: http://lkml.kernel.org/r/1375740170-7446-6-git-send-email-andi@firstfloor.org
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/kernel/process_64.c')
-rw-r--r-- | arch/x86/kernel/process_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index 05646bab4ca6..6e8c1d02ab4b 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c @@ -274,7 +274,7 @@ void start_thread_ia32(struct pt_regs *regs, u32 new_ip, u32 new_sp) * Kprobes not supported here. Set the probe on schedule instead. * Function graph tracer not supported too. */ -__notrace_funcgraph struct task_struct * +__visible __notrace_funcgraph struct task_struct * __switch_to(struct task_struct *prev_p, struct task_struct *next_p) { struct thread_struct *prev = &prev_p->thread; |