git: 8e276f22bd5d - stable/15 - sys: Bump GIANT device removal to 16.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 28 Oct 2025 12:23:47 UTC
The branch stable/15 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=8e276f22bd5dc43799e3b32e55326aca3fa10a54
commit 8e276f22bd5dc43799e3b32e55326aca3fa10a54
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-10-24 17:57:30 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-10-28 12:23:15 +0000
sys: Bump GIANT device removal to 16.0
It did not happen prior to FreeBSD 15.0.
Reported by: zlei
Sponsored by: The FreeBSD Foundation
(cherry picked from commit 24adb135c5fe8d5018781d496e0abae914534ce5)
---
sys/kern/kern_conf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/kern_conf.c b/sys/kern/kern_conf.c
index b891ed84957a..57411b0dec08 100644
--- a/sys/kern/kern_conf.c
+++ b/sys/kern/kern_conf.c
@@ -664,7 +664,7 @@ prep_cdevsw(struct cdevsw *devsw, int flags)
if ((devsw->d_flags & D_GIANTOK) == 0) {
printf(
"WARNING: Device \"%s\" is Giant locked and may be "
- "deleted before FreeBSD 15.0.\n",
+ "deleted before FreeBSD 16.0.\n",
devsw->d_name == NULL ? "???" : devsw->d_name);
}
if (devsw->d_gianttrick == NULL) {