git: 00065c7630c2 - main - Giant: move back Giant removal until 14

Warner Losh imp at FreeBSD.org
Wed Feb 17 21:33:36 UTC 2021


The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=00065c7630c25850298dd3ba6919c2d3628e8ad9

commit 00065c7630c25850298dd3ba6919c2d3628e8ad9
Author:     Warner Losh <imp at FreeBSD.org>
AuthorDate: 2021-02-17 16:28:41 +0000
Commit:     Warner Losh <imp at FreeBSD.org>
CommitDate: 2021-02-17 21:33:09 +0000

    Giant: move back Giant removal until 14
    
    Update the Giant Lock warning message to FreeBSD 14. It's growing increasling
    clear that this won't be done before 13.0.
    
    MFC: Insta (re@'s request)
---
 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 5211422199bb..29103f83c049 100644
--- a/sys/kern/kern_conf.c
+++ b/sys/kern/kern_conf.c
@@ -667,7 +667,7 @@ prep_cdevsw(struct cdevsw *devsw, int flags)
 
 	if (devsw->d_flags & D_NEEDGIANT) {
 		printf("WARNING: Device \"%s\" is Giant locked and may be "
-		    "deleted before FreeBSD 13.0.\n",
+		    "deleted before FreeBSD 14.0.\n",
 		    devsw->d_name == NULL ? "???" : devsw->d_name);
 		if (devsw->d_gianttrick == NULL) {
 			memcpy(dsw2, devsw, sizeof *dsw2);


More information about the dev-commits-src-all mailing list