aboutsummaryrefslogtreecommitdiff
path: root/asm
diff options
context:
space:
mode:
Diffstat (limited to 'asm')
-rw-r--r--asm/asm-offsets.c3
-rw-r--r--asm/head.S3
2 files changed, 4 insertions, 2 deletions
diff --git a/asm/asm-offsets.c b/asm/asm-offsets.c
index 4fb2344..74f3124 100644
--- a/asm/asm-offsets.c
+++ b/asm/asm-offsets.c
@@ -37,10 +37,11 @@ int main(void)
OFFSET(CPUTHREAD_STATE, cpu_thread, state);
OFFSET(CPUTHREAD_CUR_TOKEN, cpu_thread, current_token);
DEFINE(CPUTHREAD_GAP, sizeof(struct cpu_thread) + STACK_SAFETY_GAP);
+#ifdef STACK_CHECK_ENABLED
OFFSET(CPUTHREAD_STACK_BOT_MARK, cpu_thread, stack_bot_mark);
OFFSET(CPUTHREAD_STACK_BOT_PC, cpu_thread, stack_bot_pc);
OFFSET(CPUTHREAD_STACK_BOT_TOK, cpu_thread, stack_bot_tok);
-
+#endif
OFFSET(STACK_TYPE, stack_frame, type);
OFFSET(STACK_LOCALS, stack_frame, locals);
OFFSET(STACK_GPR0, stack_frame, gpr[0]);
diff --git a/asm/head.S b/asm/head.S
index 75eb170..c4d5240 100644
--- a/asm/head.S
+++ b/asm/head.S
@@ -311,10 +311,11 @@ boot_entry:
/* Get our per-cpu pointer into r13 */
GET_CPU()
+#ifdef STACK_CHECK_ENABLED
/* Initialize stack bottom mark to 0, it will be updated in C code */
li %r0,0
std %r0,CPUTHREAD_STACK_BOT_MARK(%r13)
-
+#endif
/* Jump to C */
mr %r3,%r27
mr %r4,%r25