Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Oct 2023 15:58:49 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 7daf9fd3f4eb - stable/13 - arm64, risvc: warn about ignored kstack_pages for thread0
Message-ID:  <202310201558.39KFwnDY022365@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=7daf9fd3f4eb7936fa5bdf238bd7b466e13c0e3a

commit 7daf9fd3f4eb7936fa5bdf238bd7b466e13c0e3a
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-10-11 18:56:28 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-10-20 15:58:14 +0000

    arm64, risvc: warn about ignored kstack_pages for thread0
    
    (cherry picked from commit 6aa641b71d0dd1b26674f0b6dba086410f643595)
---
 sys/arm64/arm64/machdep.c | 4 ++++
 sys/riscv/riscv/machdep.c | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/sys/arm64/arm64/machdep.c b/sys/arm64/arm64/machdep.c
index a575ca5eb818..5c786a58f046 100644
--- a/sys/arm64/arm64/machdep.c
+++ b/sys/arm64/arm64/machdep.c
@@ -895,6 +895,10 @@ initarm(struct arm64_bootparams *abp)
 
 	early_boot = 0;
 
+	if (bootverbose && kstack_pages != KSTACK_PAGES)
+		printf("kern.kstack_pages = %d ignored for thread0\n",
+		    kstack_pages);
+
 	TSEXIT();
 }
 
diff --git a/sys/riscv/riscv/machdep.c b/sys/riscv/riscv/machdep.c
index b8a60d3a2bff..79305cbc29d8 100644
--- a/sys/riscv/riscv/machdep.c
+++ b/sys/riscv/riscv/machdep.c
@@ -599,6 +599,10 @@ initriscv(struct riscv_bootparams *rvbp)
 
 	early_boot = 0;
 
+	if (bootverbose && kstack_pages != KSTACK_PAGES)
+		printf("kern.kstack_pages = %d ignored for thread0\n",
+		    kstack_pages);
+
 	TSEXIT();
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202310201558.39KFwnDY022365>