git: a8bd34bfc0db - main - Giant: Postpone removal of Giant-locked drivers until 15
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 31 Oct 2023 12:48:13 UTC
The branch main has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=a8bd34bfc0db38c1c11e9c36b7dd849d607c17a8 commit a8bd34bfc0db38c1c11e9c36b7dd849d607c17a8 Author: Zhenlei Huang <zlei@FreeBSD.org> AuthorDate: 2023-10-31 12:45:14 +0000 Commit: Zhenlei Huang <zlei@FreeBSD.org> CommitDate: 2023-10-31 12:45:14 +0000 Giant: Postpone removal of Giant-locked drivers until 15 Reviewed by: imp MFC after: 1 day Differential Revision: https://reviews.freebsd.org/D42401 --- 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 a7c22b7d118a..db5fe7a6a373 100644 --- a/sys/kern/kern_conf.c +++ b/sys/kern/kern_conf.c @@ -665,7 +665,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 14.0.\n", + "deleted before FreeBSD 15.0.\n", devsw->d_name == NULL ? "???" : devsw->d_name); } if (devsw->d_gianttrick == NULL) {