aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/process_64.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/process_64.c')
-rw-r--r--arch/x86/kernel/process_64.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c
index ad535b68317..7cf0a6b6d4b 100644
--- a/arch/x86/kernel/process_64.c
+++ b/arch/x86/kernel/process_64.c
@@ -356,7 +356,7 @@ start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
356 percpu_write(old_rsp, new_sp); 356 percpu_write(old_rsp, new_sp);
357 regs->cs = __USER_CS; 357 regs->cs = __USER_CS;
358 regs->ss = __USER_DS; 358 regs->ss = __USER_DS;
359 regs->flags = 0x200; 359 regs->flags = X86_EFLAGS_IF;
360 set_fs(USER_DS); 360 set_fs(USER_DS);
361 /* 361 /*
362 * Free the old FP and other extended state 362 * Free the old FP and other extended state
@@ -365,6 +365,27 @@ start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
365} 365}
366EXPORT_SYMBOL_GPL(start_thread); 366EXPORT_SYMBOL_GPL(start_thread);
367 367
368#ifdef CONFIG_IA32_EMULATION
369void start_thread_ia32(struct pt_regs *regs, u32 new_ip, u32 new_sp)
370{
371 loadsegment(fs, 0);
372 loadsegment(ds, __USER32_DS);
373 loadsegment(es, __USER32_DS);
374 load_gs_index(0);
375 regs->ip = new_ip;
376 regs->sp = new_sp;
377 percpu_write(old_rsp, new_sp);
378 regs->cs = __USER32_CS;
379 regs->ss = __USER32_DS;
380 regs->flags = X86_EFLAGS_IF;
381 set_fs(USER_DS);
382 /*
383 * Free the old FP and other extended state
384 */
385 free_thread_xstate(current);
386}
387#endif
388
368/* 389/*
369 * switch_to(x,y) should switch tasks from x to y. 390 * switch_to(x,y) should switch tasks from x to y.
370 * 391 *