diff options
Diffstat (limited to 'arch/um/sys-i386/ptrace.c')
-rw-r--r-- | arch/um/sys-i386/ptrace.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/um/sys-i386/ptrace.c b/arch/um/sys-i386/ptrace.c index 6a23cc6947c3..6028bc7cc01b 100644 --- a/arch/um/sys-i386/ptrace.c +++ b/arch/um/sys-i386/ptrace.c | |||
@@ -23,7 +23,14 @@ void arch_switch_to_tt(struct task_struct *from, struct task_struct *to) | |||
23 | 23 | ||
24 | void arch_switch_to_skas(struct task_struct *from, struct task_struct *to) | 24 | void arch_switch_to_skas(struct task_struct *from, struct task_struct *to) |
25 | { | 25 | { |
26 | arch_switch_tls_skas(from, to); | 26 | int err = arch_switch_tls_skas(from, to); |
27 | if (!err) | ||
28 | return; | ||
29 | |||
30 | if (err != -EINVAL) | ||
31 | printk(KERN_WARNING "arch_switch_tls_skas failed, errno %d, not EINVAL\n", -err); | ||
32 | else | ||
33 | printk(KERN_WARNING "arch_switch_tls_skas failed, errno = EINVAL\n"); | ||
27 | } | 34 | } |
28 | 35 | ||
29 | int is_syscall(unsigned long addr) | 36 | int is_syscall(unsigned long addr) |