diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-09-04 21:04:24 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-09-04 21:04:24 +0200 |
| commit | c6d5c461ff8ec1d8361c477a4318491755a24235 (patch) | |
| tree | 759781b248ba33cee0f53fea7fb7e43717a59f69 /arch | |
| parent | f00223b5cc99a8f3f1b6a15658d8c854c177932a (diff) | |
| download | kernel-c6d5c461ff8ec1d8361c477a4318491755a24235.tar.xz kernel-c6d5c461ff8ec1d8361c477a4318491755a24235.zip | |
x86_64/boot: reduce kernel stack size to 8 KiB
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/x86_64/arch/boot/entry64.s | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
