aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um
diff options
context:
space:
mode:
Diffstat (limited to 'arch/um')
-rw-r--r--arch/um/kernel/skas/process_kern.c7
-rw-r--r--arch/um/sys-i386/ptrace.c9
-rw-r--r--arch/um/sys-i386/tls.c13
3 files changed, 25 insertions, 4 deletions
diff --git a/arch/um/kernel/skas/process_kern.c b/arch/um/kernel/skas/process_kern.c
index 38b185370c42..2135eaf98a93 100644
--- a/arch/um/kernel/skas/process_kern.c
+++ b/arch/um/kernel/skas/process_kern.c
@@ -91,10 +91,17 @@ void fork_handler(int sig)
91 panic("blech"); 91 panic("blech");
92 92
93 schedule_tail(current->thread.prev_sched); 93 schedule_tail(current->thread.prev_sched);
94
95 /* XXX: if interrupt_end() calls schedule, this call to
96 * arch_switch_to_skas isn't needed. We could want to apply this to
97 * improve performance. -bb */
98 arch_switch_to_skas(current->thread.prev_sched, current);
99
94 current->thread.prev_sched = NULL; 100 current->thread.prev_sched = NULL;
95 101
96/* Handle any immediate reschedules or signals */ 102/* Handle any immediate reschedules or signals */
97 interrupt_end(); 103 interrupt_end();
104
98 userspace(&current->thread.regs.regs); 105 userspace(&current->thread.regs.regs);
99} 106}
100 107
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
24void arch_switch_to_skas(struct task_struct *from, struct task_struct *to) 24void 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
29int is_syscall(unsigned long addr) 36int is_syscall(unsigned long addr)
diff --git a/arch/um/sys-i386/tls.c b/arch/um/sys-i386/tls.c
index e3c5bc593fae..2251654c6b45 100644
--- a/arch/um/sys-i386/tls.c
+++ b/arch/um/sys-i386/tls.c
@@ -70,8 +70,6 @@ static int get_free_idx(struct task_struct* task)
70 return -ESRCH; 70 return -ESRCH;
71} 71}
72 72
73#define O_FORCE 1
74
75static inline void clear_user_desc(struct user_desc* info) 73static inline void clear_user_desc(struct user_desc* info)
76{ 74{
77 /* Postcondition: LDT_empty(info) returns true. */ 75 /* Postcondition: LDT_empty(info) returns true. */
@@ -84,6 +82,8 @@ static inline void clear_user_desc(struct user_desc* info)
84 info->seg_not_present = 1; 82 info->seg_not_present = 1;
85} 83}
86 84
85#define O_FORCE 1
86
87static int load_TLS(int flags, struct task_struct *to) 87static int load_TLS(int flags, struct task_struct *to)
88{ 88{
89 int ret = 0; 89 int ret = 0;
@@ -162,7 +162,13 @@ void clear_flushed_tls(struct task_struct *task)
162 * SKAS patch. */ 162 * SKAS patch. */
163int arch_switch_tls_skas(struct task_struct *from, struct task_struct *to) 163int arch_switch_tls_skas(struct task_struct *from, struct task_struct *to)
164{ 164{
165 return load_TLS(O_FORCE, to); 165 /* We have no need whatsoever to switch TLS for kernel threads; beyond
166 * that, that would also result in us calling os_set_thread_area with
167 * userspace_pid[cpu] == 0, which gives an error. */
168 if (likely(to->mm))
169 return load_TLS(O_FORCE, to);
170
171 return 0;
166} 172}
167 173
168int arch_switch_tls_tt(struct task_struct *from, struct task_struct *to) 174int arch_switch_tls_tt(struct task_struct *from, struct task_struct *to)
@@ -324,3 +330,4 @@ int ptrace_get_thread_area(struct task_struct *child, int idx,
324out: 330out:
325 return ret; 331 return ret;
326} 332}
333