git: 7dd8fb3cd9fc - stable/13 - arm64, riscv: Use KSTACK_PAGES for the thread0 kstack size designator
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 20 Oct 2023 15:58:47 UTC
The branch stable/13 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=7dd8fb3cd9fccd11082cc82eba68de4c6114e48d
commit 7dd8fb3cd9fccd11082cc82eba68de4c6114e48d
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-10-09 23:56:37 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-10-20 15:58:14 +0000
arm64, riscv: Use KSTACK_PAGES for the thread0 kstack size designator
(cherry picked from commit ac63f7534d0102352bf993ebe2c748ce2ffd432e)
---
sys/arm64/arm64/machdep.c | 3 ++-
sys/riscv/riscv/machdep.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/sys/arm64/arm64/machdep.c b/sys/arm64/arm64/machdep.c
index 0c64160596be..a575ca5eb818 100644
--- a/sys/arm64/arm64/machdep.c
+++ b/sys/arm64/arm64/machdep.c
@@ -26,6 +26,7 @@
*/
#include "opt_acpi.h"
+#include "opt_kstack_pages.h"
#include "opt_platform.h"
#include "opt_ddb.h"
@@ -363,7 +364,7 @@ init_proc0(vm_offset_t kstack)
proc_linkup0(&proc0, &thread0);
thread0.td_kstack = kstack;
- thread0.td_kstack_pages = kstack_pages;
+ thread0.td_kstack_pages = KSTACK_PAGES;
#if defined(PERTHREAD_SSP)
thread0.td_md.md_canary = boot_canary;
#endif
diff --git a/sys/riscv/riscv/machdep.c b/sys/riscv/riscv/machdep.c
index 9aeeb4f1252c..b8a60d3a2bff 100644
--- a/sys/riscv/riscv/machdep.c
+++ b/sys/riscv/riscv/machdep.c
@@ -33,6 +33,7 @@
* SUCH DAMAGE.
*/
+#include "opt_kstack_pages.h"
#include "opt_platform.h"
#include <sys/cdefs.h>
@@ -289,7 +290,7 @@ init_proc0(vm_offset_t kstack)
proc_linkup0(&proc0, &thread0);
thread0.td_kstack = kstack;
- thread0.td_kstack_pages = kstack_pages;
+ thread0.td_kstack_pages = KSTACK_PAGES;
thread0.td_pcb = (struct pcb *)(thread0.td_kstack +
thread0.td_kstack_pages * PAGE_SIZE) - 1;
thread0.td_pcb->pcb_fpflags = 0;