.. | .. |
---|
42 | 42 | #endif |
---|
43 | 43 | BLANK(); |
---|
44 | 44 | DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); |
---|
| 45 | + DEFINE(TI_LOCAL_FLAGS, offsetof(struct thread_info, local_flags)); |
---|
| 46 | + DEFINE(TI_SYSCALL, offsetof(struct thread_info, syscall)); |
---|
45 | 47 | DEFINE(TI_PREEMPT, offsetof(struct thread_info, preempt_count)); |
---|
46 | 48 | DEFINE(TI_ADDR_LIMIT, offsetof(struct thread_info, addr_limit)); |
---|
47 | 49 | DEFINE(TI_TASK, offsetof(struct thread_info, task)); |
---|
.. | .. |
---|
51 | 53 | DEFINE(TI_USED_CP, offsetof(struct thread_info, used_cp)); |
---|
52 | 54 | DEFINE(TI_TP_VALUE, offsetof(struct thread_info, tp_value)); |
---|
53 | 55 | DEFINE(TI_FPSTATE, offsetof(struct thread_info, fpstate)); |
---|
| 56 | + DEFINE(TI_OOB_MASK, STAGE_MASK); |
---|
54 | 57 | #ifdef CONFIG_VFP |
---|
55 | 58 | DEFINE(TI_VFPSTATE, offsetof(struct thread_info, vfpstate)); |
---|
56 | 59 | #ifdef CONFIG_SMP |
---|
.. | .. |
---|
161 | 164 | BLANK(); |
---|
162 | 165 | #ifdef CONFIG_VDSO |
---|
163 | 166 | DEFINE(VDSO_DATA_SIZE, sizeof(union vdso_data_store)); |
---|
| 167 | + DEFINE(VDSO_PRIV_SIZE, PAGE_SIZE); |
---|
164 | 168 | #endif |
---|
165 | 169 | BLANK(); |
---|
166 | 170 | #ifdef CONFIG_ARM_MPU |
---|