summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorKelly Yancey <kbyanc@FreeBSD.org>2002-06-10 22:40:26 +0000
committerKelly Yancey <kbyanc@FreeBSD.org>2002-06-10 22:40:26 +0000
commit3316a80bd16336c54fc3425868fa69eeded56db8 (patch)
tree363422e1c226a6717445ae6720682740aaa6cc1e /sys/kern
parent5f8aa32e1b2f45ad4191e6bdc5674b19b0bf892c (diff)
Notes
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/subr_kobj.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/subr_kobj.c b/sys/kern/subr_kobj.c
index 659e97ab922f..b5bfa1f4ca69 100644
--- a/sys/kern/subr_kobj.c
+++ b/sys/kern/subr_kobj.c
@@ -47,12 +47,12 @@ static MALLOC_DEFINE(M_KOBJ, "kobj", "Kernel object structures");
#include <sys/sysctl.h>
-int kobj_lookup_hits;
-int kobj_lookup_misses;
+u_int kobj_lookup_hits;
+u_int kobj_lookup_misses;
-SYSCTL_INT(_kern, OID_AUTO, kobj_hits, CTLFLAG_RD,
+SYSCTL_UINT(_kern, OID_AUTO, kobj_hits, CTLFLAG_RD,
&kobj_lookup_hits, 0, "")
-SYSCTL_INT(_kern, OID_AUTO, kobj_misses, CTLFLAG_RD,
+SYSCTL_UINT(_kern, OID_AUTO, kobj_misses, CTLFLAG_RD,
&kobj_lookup_misses, 0, "")
#endif