Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 06 May 2026 20:54:02 +0000
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 5a6e5954d14b - main - kobj: Assert class passed to kobj_init_static is compiled
Message-ID:  <69fbaa6a.21d51.a89b380@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=5a6e5954d14b589bcba0125d10a6c7b62b588f4b

commit 5a6e5954d14b589bcba0125d10a6c7b62b588f4b
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2026-05-06 20:53:46 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2026-05-06 20:53:46 +0000

    kobj: Assert class passed to kobj_init_static is compiled
    
    Inspired by discussion in
    https://github.com/freebsd/freebsd-src/pull/2016
    
    Reviewed by:    imp
    Differential Revision:  https://reviews.freebsd.org/D56624
---
 sys/kern/subr_kobj.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys/kern/subr_kobj.c b/sys/kern/subr_kobj.c
index d97834b3fe58..09fd730660c4 100644
--- a/sys/kern/subr_kobj.c
+++ b/sys/kern/subr_kobj.c
@@ -317,6 +317,8 @@ void
 kobj_init_static(kobj_t obj, kobj_class_t cls)
 {
 
+	KASSERT(cls->ops != NULL,
+	    ("%s: class %p is not compiled", __func__, cls));
 	KASSERT(kobj_mutex_inited == 0,
 	    ("%s: only supported during early cycles", __func__));
 


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69fbaa6a.21d51.a89b380>