5 #include <linux/stddef.h>
6 #include <linux/types.h>
7 #include <linux/cache.h>
10 /* Per processor datastructure. %gs points to it while the kernel runs */
12 struct task_struct
*pcurrent
; /* 0 Current process */
13 unsigned long data_offset
; /* 8 Per cpu data offset from linker
15 unsigned long kernelstack
; /* 16 top of kernel stack for current */
16 unsigned long oldrsp
; /* 24 user rsp for system call */
17 int irqcount
; /* 32 Irq nesting counter. Starts with -1 */
18 int cpunumber
; /* 36 Logical CPU number */
19 #ifdef CONFIG_CC_STACKPROTECTOR
20 unsigned long stack_canary
; /* 40 stack canary value */
21 /* gcc-ABI: this canary MUST be at
25 int nodenumber
; /* number of current node */
26 unsigned int __softirq_pending
;
27 unsigned int __nmi_count
; /* number of NMI on this CPUs */
30 struct mm_struct
*active_mm
;
31 unsigned apic_timer_irqs
;
32 } ____cacheline_aligned_in_smp
;
34 extern struct x8664_pda
*_cpu_pda
[];
35 extern struct x8664_pda boot_cpu_pda
[];
37 #define cpu_pda(i) (_cpu_pda[i])
40 * There is no fast way to get the base address of the PDA, all the accesses
41 * have to mention %fs/%gs. So it needs to be done this Torvaldian way.
43 extern void __bad_pda_field(void) __attribute__((noreturn
));
46 * proxy_pda doesn't actually exist, but tell gcc it is accessed for
47 * all PDA accesses so it gets read/write dependencies right.
49 extern struct x8664_pda _proxy_pda
;
51 #define pda_offset(field) offsetof(struct x8664_pda, field)
53 #define pda_to_op(op,field,val) do { \
54 typedef typeof(_proxy_pda.field) T__; \
55 if (0) { T__ tmp__; tmp__ = (val); } /* type checking */ \
56 switch (sizeof(_proxy_pda.field)) { \
58 asm(op "w %1,%%gs:%c2" : \
59 "+m" (_proxy_pda.field) : \
61 "i"(pda_offset(field))); \
64 asm(op "l %1,%%gs:%c2" : \
65 "+m" (_proxy_pda.field) : \
67 "i" (pda_offset(field))); \
70 asm(op "q %1,%%gs:%c2": \
71 "+m" (_proxy_pda.field) : \
73 "i"(pda_offset(field))); \
80 #define pda_from_op(op,field) ({ \
81 typeof(_proxy_pda.field) ret__; \
82 switch (sizeof(_proxy_pda.field)) { \
84 asm(op "w %%gs:%c1,%0" : \
86 "i" (pda_offset(field)), \
87 "m" (_proxy_pda.field)); \
90 asm(op "l %%gs:%c1,%0": \
92 "i" (pda_offset(field)), \
93 "m" (_proxy_pda.field)); \
96 asm(op "q %%gs:%c1,%0": \
98 "i" (pda_offset(field)), \
99 "m" (_proxy_pda.field)); \
106 #define read_pda(field) pda_from_op("mov",field)
107 #define write_pda(field,val) pda_to_op("mov",field,val)
108 #define add_pda(field,val) pda_to_op("add",field,val)
109 #define sub_pda(field,val) pda_to_op("sub",field,val)
110 #define or_pda(field,val) pda_to_op("or",field,val)
112 /* This is not atomic against other CPUs -- CPU preemption needs to be off */
113 #define test_and_clear_bit_pda(bit,field) ({ \
115 asm volatile("btr %2,%%gs:%c3\n\tsbbl %0,%0" \
116 : "=r" (old__), "+m" (_proxy_pda.field) \
117 : "dIr" (bit), "i" (pda_offset(field)) : "memory"); \
123 #define PDA_STACKOFFSET (5*8)