summaryrefslogtreecommitdiffstats
path: root/sys/net/if_loop.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-06-08 05:24:21 +0000
committerpeter <peter@FreeBSD.org>2001-06-08 05:24:21 +0000
commit4b91e2ecf0aa1bb9c2c89a4f0ef1701e5aec268f (patch)
tree86b0161dd1235a75cc934e1a85ca5844895edd8f /sys/net/if_loop.c
parentaa18b0b03200ae9ae0c0f42a9a5253d50a170e64 (diff)
downloadFreeBSD-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/net/if_loop.c')
-rw-r--r--sys/net/if_loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c
index 07de0d7..0e9ac65 100644
--- a/sys/net/if_loop.c
+++ b/sys/net/if_loop.c
@@ -179,7 +179,7 @@ loop_modevent(module_t mod, int type, void *data)
switch (type) {
case MOD_LOAD:
- TUNABLE_INT_FETCH("net.nloop", nloop);
+ TUNABLE_INT_FETCH("net.nloop", &nloop);
if (nloop < 1) /* sanity check */
nloop = 1;
for (i = 0; i < nloop; i++)
OpenPOWER on IntegriCloud