diff options
author | peter <peter@FreeBSD.org> | 2001-06-08 05:24:21 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-06-08 05:24:21 +0000 |
commit | 4b91e2ecf0aa1bb9c2c89a4f0ef1701e5aec268f (patch) | |
tree | 86b0161dd1235a75cc934e1a85ca5844895edd8f /sys/kern/kern_malloc.c | |
parent | aa18b0b03200ae9ae0c0f42a9a5253d50a170e64 (diff) | |
download | FreeBSD-src-4b91e2ecf0aa1bb9c2c89a4f0ef1701e5aec268f.zip FreeBSD-src-4b91e2ecf0aa1bb9c2c89a4f0ef1701e5aec268f.tar.gz |
"Fix" the previous initial attempt at fixing TUNABLE_INT(). This time
around, use a common function for looking up and extracting the tunables
from the kernel environment. This saves duplicating the same function
over and over again. This way typically has an overhead of 8 bytes + the
path string, versus about 26 bytes + the path string.
Diffstat (limited to 'sys/kern/kern_malloc.c')
-rw-r--r-- | sys/kern/kern_malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c index 7eef2b6..f460d53 100644 --- a/sys/kern/kern_malloc.c +++ b/sys/kern/kern_malloc.c @@ -463,7 +463,7 @@ kmeminit(dummy) #endif /* Allow final override from the kernel environment */ - TUNABLE_INT_FETCH("kern.vm.kmem.size", vm_kmem_size); + TUNABLE_INT_FETCH("kern.vm.kmem.size", &vm_kmem_size); /* * Limit kmem virtual size to twice the physical memory. |