git: 24adb135c5fe - main - sys: Bump GIANT device removal to 16.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 24 Oct 2025 18:27:46 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=24adb135c5fe8d5018781d496e0abae914534ce5
commit 24adb135c5fe8d5018781d496e0abae914534ce5
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-10-24 17:57:30 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-10-24 18:27:17 +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
---
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 dcf3309898ab..2da51d84ff60 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) {