The branch releng/15.0 has been updated by cperciva: URL: https://cgit.FreeBSD.org/src/commit/?id=1dc5e059da6e29ff33a23cd57b6d4faa7cea4130
commit 1dc5e059da6e29ff33a23cd57b6d4faa7cea4130 Author: Ed Maste <[email protected]> AuthorDate: 2025-10-24 17:57:30 +0000 Commit: Colin Percival <[email protected]> CommitDate: 2025-10-30 04:22:44 +0000 sys: Bump GIANT device removal to 16.0 It did not happen prior to FreeBSD 15.0. Approved by: re (cperciva) Reported by: zlei Sponsored by: The FreeBSD Foundation (cherry picked from commit 24adb135c5fe8d5018781d496e0abae914534ce5) (cherry picked from commit 8e276f22bd5dc43799e3b32e55326aca3fa10a54) --- 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) {
