From c6d5c461ff8ec1d8361c477a4318491755a24235 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 4 Sep 2026 21:04:24 +0200 Subject: x86_64/boot: reduce kernel stack size to 8 KiB --- arch/x86_64/arch/boot/entry64.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/x86_64') diff --git a/arch/x86_64/arch/boot/entry64.s b/arch/x86_64/arch/boot/entry64.s index 29fb778d..d08276c0 100644 --- a/arch/x86_64/arch/boot/entry64.s +++ b/arch/x86_64/arch/boot/entry64.s @@ -2,7 +2,7 @@ .align 16 .global stack_top -stack_bottom: .skip 1 << 20 +stack_bottom: .skip 1 << 13 stack_top: stack_size = stack_top - stack_bottom -- cgit v1.2.3