aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/kernel/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/um/kernel/exec.c')
-rw-r--r--arch/um/kernel/exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/kernel/exec.c b/arch/um/kernel/exec.c
index 25c502617553..7c77adecd919 100644
--- a/arch/um/kernel/exec.c
+++ b/arch/um/kernel/exec.c
@@ -23,14 +23,14 @@ void flush_thread(void)
23 23
24 arch_flush_thread(&current->thread.arch); 24 arch_flush_thread(&current->thread.arch);
25 25
26 ret = unmap(&current->mm->context.skas.id, 0, end, 1, &data); 26 ret = unmap(&current->mm->context.id, 0, end, 1, &data);
27 if (ret) { 27 if (ret) {
28 printk(KERN_ERR "flush_thread - clearing address space failed, " 28 printk(KERN_ERR "flush_thread - clearing address space failed, "
29 "err = %d\n", ret); 29 "err = %d\n", ret);
30 force_sig(SIGKILL, current); 30 force_sig(SIGKILL, current);
31 } 31 }
32 32
33 __switch_mm(&current->mm->context.skas.id); 33 __switch_mm(&current->mm->context.id);
34} 34}
35 35
36void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp) 36void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp)