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
;
33 } ____cacheline_aligned_in_smp
;
35 extern struct x8664_pda
*_cpu_pda
[];
36 extern struct x8664_pda boot_cpu_pda
[];
38 #define cpu_pda(i) (_cpu_pda[i])
41 * There is no fast way to get the base address of the PDA, all the accesses
42 * have to mention %fs/%gs. So it needs to be done this Torvaldian way.
44 extern void __bad_pda_field(void) __attribute__((noreturn
));
47 * proxy_pda doesn't actually exist, but tell gcc it is accessed for
48 * all PDA accesses so it gets read/write dependencies right.
50 extern struct x8664_pda _proxy_pda
;
52 #define pda_offset(field) offsetof(struct x8664_pda, field)
54 #define pda_to_op(op,field,val) do { \
55 typedef typeof(_proxy_pda.field) T__; \
56 if (0) { T__ tmp__; tmp__ = (val); } /* type checking */ \
57 switch (sizeof(_proxy_pda.field)) { \
59 asm(op "w %1,%%gs:%c2" : \
60 "+m" (_proxy_pda.field) : \
62 "i"(pda_offset(field))); \
65 asm(op "l %1,%%gs:%c2" : \
66 "+m" (_proxy_pda.field) : \
68 "i" (pda_offset(field))); \
71 asm(op "q %1,%%gs:%c2": \
72 "+m" (_proxy_pda.field) : \
74 "i"(pda_offset(field))); \
81 #define pda_from_op(op,field) ({ \
82 typeof(_proxy_pda.field) ret__; \
83 switch (sizeof(_proxy_pda.field)) { \
85 asm(op "w %%gs:%c1,%0" : \
87 "i" (pda_offset(field)), \
88 "m" (_proxy_pda.field)); \
91 asm(op "l %%gs:%c1,%0": \
93 "i" (pda_offset(field)), \
94 "m" (_proxy_pda.field)); \
97 asm(op "q %%gs:%c1,%0": \
99 "i" (pda_offset(field)), \
100 "m" (_proxy_pda.field)); \
107 #define read_pda(field) pda_from_op("mov",field)
108 #define write_pda(field,val) pda_to_op("mov",field,val)
109 #define add_pda(field,val) pda_to_op("add",field,val)
110 #define sub_pda(field,val) pda_to_op("sub",field,val)
111 #define or_pda(field,val) pda_to_op("or",field,val)
113 /* This is not atomic against other CPUs -- CPU preemption needs to be off */
114 #define test_and_clear_bit_pda(bit,field) ({ \
116 asm volatile("btr %2,%%gs:%c3\n\tsbbl %0,%0" \
117 : "=r" (old__), "+m" (_proxy_pda.field) \
118 : "dIr" (bit), "i" (pda_offset(field)) : "memory"); \
124 #define PDA_STACKOFFSET (5*8)