summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_kobj.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/subr_kobj.c')
-rw-r--r--sys/kern/subr_kobj.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/subr_kobj.c b/sys/kern/subr_kobj.c
index 9a2eafb..6b95eb9 100644
--- a/sys/kern/subr_kobj.c
+++ b/sys/kern/subr_kobj.c
@@ -174,7 +174,7 @@ kobj_init(kobj_t obj, kobj_class_t cls)
kobj_class_compile(cls);
obj->ops = cls->ops;
- cls->instances++;
+ cls->refs++;
}
void
@@ -187,8 +187,8 @@ kobj_delete(kobj_t obj, struct malloc_type *mtype)
* after its last instance is deleted. As an optimisation, we
* should defer this for a short while to avoid thrashing.
*/
- cls->instances--;
- if (!cls->instances)
+ cls->refs--;
+ if (!cls->refs)
kobj_class_free(cls);
obj->ops = 0;
OpenPOWER on IntegriCloud