blob: fcc5cd387fd17a59e5f28ba5fc8fb65fc57ae5af [file] [log] [blame]
David Howellsf05e7982012-03-28 18:11:12 +01001#ifndef _ASM_X86_SWITCH_TO_H
2#define _ASM_X86_SWITCH_TO_H
3
4struct task_struct; /* one of the stranger aspects of C forward declarations */
Brian Gerst01003012016-08-13 12:38:19 -04005
6struct task_struct *__switch_to_asm(struct task_struct *prev,
7 struct task_struct *next);
8
Andi Kleen35ea79032013-08-05 15:02:39 -07009__visible struct task_struct *__switch_to(struct task_struct *prev,
Brian Gerst01003012016-08-13 12:38:19 -040010 struct task_struct *next);
David Howellsf05e7982012-03-28 18:11:12 +010011struct tss_struct;
12void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
13 struct tss_struct *tss);
14
Andy Lutomirskie37e43a2016-08-11 02:35:23 -070015/* This runs runs on the previous thread's stack. */
16static inline void prepare_switch_to(struct task_struct *prev,
17 struct task_struct *next)
18{
19#ifdef CONFIG_VMAP_STACK
20 /*
21 * If we switch to a stack that has a top-level paging entry
22 * that is not present in the current mm, the resulting #PF will
23 * will be promoted to a double-fault and we'll panic. Probe
24 * the new stack now so that vmalloc_fault can fix up the page
25 * tables if needed. This can only happen if we use a stack
26 * in vmap space.
27 *
28 * We assume that the stack is aligned so that it never spans
29 * more than one top-level paging entry.
30 *
31 * To minimize cache pollution, just follow the stack pointer.
32 */
33 READ_ONCE(*(unsigned char *)next->thread.sp);
34#endif
35}
36
Brian Gerst616d2482016-08-13 12:38:20 -040037asmlinkage void ret_from_fork(void);
38
Josh Poimboeuf2c96b2f2017-01-09 12:00:24 -060039/*
40 * This is the structure pointed to by thread.sp for an inactive task. The
41 * order of the fields must match the code in __switch_to_asm().
42 */
Brian Gerst7b32aea2016-08-13 12:38:18 -040043struct inactive_task_frame {
Brian Gerst01003012016-08-13 12:38:19 -040044#ifdef CONFIG_X86_64
45 unsigned long r15;
46 unsigned long r14;
47 unsigned long r13;
48 unsigned long r12;
49#else
50 unsigned long si;
51 unsigned long di;
52#endif
53 unsigned long bx;
Josh Poimboeuf2c96b2f2017-01-09 12:00:24 -060054
55 /*
56 * These two fields must be together. They form a stack frame header,
57 * needed by get_frame_pointer().
58 */
Brian Gerst7b32aea2016-08-13 12:38:18 -040059 unsigned long bp;
Brian Gerst01003012016-08-13 12:38:19 -040060 unsigned long ret_addr;
Brian Gerst7b32aea2016-08-13 12:38:18 -040061};
62
Brian Gerst01003012016-08-13 12:38:19 -040063struct fork_frame {
64 struct inactive_task_frame frame;
65 struct pt_regs regs;
66};
David Howellsf05e7982012-03-28 18:11:12 +010067
David Howellsf05e7982012-03-28 18:11:12 +010068#define switch_to(prev, next, last) \
69do { \
Andy Lutomirskie37e43a2016-08-11 02:35:23 -070070 prepare_switch_to(prev, next); \
71 \
Brian Gerst01003012016-08-13 12:38:19 -040072 ((last) = __switch_to_asm((prev), (next))); \
David Howellsf05e7982012-03-28 18:11:12 +010073} while (0)
74
David Howellsf05e7982012-03-28 18:11:12 +010075#endif /* _ASM_X86_SWITCH_TO_H */