hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
kernel/arch/arm/kernel/asm-offsets.c
....@@ -42,6 +42,8 @@
4242 #endif
4343 BLANK();
4444 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));
4547 DEFINE(TI_PREEMPT, offsetof(struct thread_info, preempt_count));
4648 DEFINE(TI_ADDR_LIMIT, offsetof(struct thread_info, addr_limit));
4749 DEFINE(TI_TASK, offsetof(struct thread_info, task));
....@@ -51,6 +53,7 @@
5153 DEFINE(TI_USED_CP, offsetof(struct thread_info, used_cp));
5254 DEFINE(TI_TP_VALUE, offsetof(struct thread_info, tp_value));
5355 DEFINE(TI_FPSTATE, offsetof(struct thread_info, fpstate));
56
+ DEFINE(TI_OOB_MASK, STAGE_MASK);
5457 #ifdef CONFIG_VFP
5558 DEFINE(TI_VFPSTATE, offsetof(struct thread_info, vfpstate));
5659 #ifdef CONFIG_SMP
....@@ -161,6 +164,7 @@
161164 BLANK();
162165 #ifdef CONFIG_VDSO
163166 DEFINE(VDSO_DATA_SIZE, sizeof(union vdso_data_store));
167
+ DEFINE(VDSO_PRIV_SIZE, PAGE_SIZE);
164168 #endif
165169 BLANK();
166170 #ifdef CONFIG_ARM_MPU