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 -1 */
18 unsigned 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 unsigned int __softirq_pending;
26 unsigned int __nmi_count; /* number of NMI on this CPUs */
29 struct mm_struct *active_mm;
30 unsigned apic_timer_irqs;
32 unsigned irq_resched_count;
33 unsigned irq_call_count;
34 unsigned irq_tlb_count;
35 unsigned irq_thermal_count;
36 unsigned irq_threshold_count;
37 unsigned irq_spurious_count;
38 } ____cacheline_aligned_in_smp;
40 extern struct x8664_pda *_cpu_pda[];
41 extern struct x8664_pda boot_cpu_pda[];
42 extern void pda_init(int);
44 #define cpu_pda(i) (_cpu_pda[i])
47 * There is no fast way to get the base address of the PDA, all the accesses
48 * have to mention %fs/%gs. So it needs to be done this Torvaldian way.
50 extern void __bad_pda_field(void) __attribute__((noreturn));
53 * proxy_pda doesn't actually exist, but tell gcc it is accessed for
54 * all PDA accesses so it gets read/write dependencies right.
56 extern struct x8664_pda _proxy_pda;
58 #define pda_offset(field) offsetof(struct x8664_pda, field)
60 #define pda_to_op(op, field, val) \
62 typedef typeof(_proxy_pda.field) T__; \
63 if (0) { T__ tmp__; tmp__ = (val); } /* type checking */ \
64 switch (sizeof(_proxy_pda.field)) { \
66 asm(op "w %1,%%gs:%c2" : \
67 "+m" (_proxy_pda.field) : \
69 "i"(pda_offset(field))); \
72 asm(op "l %1,%%gs:%c2" : \
73 "+m" (_proxy_pda.field) : \
75 "i" (pda_offset(field))); \
78 asm(op "q %1,%%gs:%c2": \
79 "+m" (_proxy_pda.field) : \
81 "i"(pda_offset(field))); \
88 #define pda_from_op(op, field) \
90 typeof(_proxy_pda.field) ret__; \
91 switch (sizeof(_proxy_pda.field)) { \
93 asm(op "w %%gs:%c1,%0" : \
95 "i" (pda_offset(field)), \
96 "m" (_proxy_pda.field)); \
99 asm(op "l %%gs:%c1,%0": \
101 "i" (pda_offset(field)), \
102 "m" (_proxy_pda.field)); \
105 asm(op "q %%gs:%c1,%0": \
107 "i" (pda_offset(field)), \
108 "m" (_proxy_pda.field)); \
116 #define read_pda(field) pda_from_op("mov", field)
117 #define write_pda(field, val) pda_to_op("mov", field, val)
118 #define add_pda(field, val) pda_to_op("add", field, val)
119 #define sub_pda(field, val) pda_to_op("sub", field, val)
120 #define or_pda(field, val) pda_to_op("or", field, val)
122 /* This is not atomic against other CPUs -- CPU preemption needs to be off */
123 #define test_and_clear_bit_pda(bit, field) \
126 asm volatile("btr %2,%%gs:%c3\n\tsbbl %0,%0" \
127 : "=r" (old__), "+m" (_proxy_pda.field) \
128 : "dIr" (bit), "i" (pda_offset(field)) : "memory");\
134 #define PDA_STACKOFFSET (5*8)