diff options
author | mdf <mdf@FreeBSD.org> | 2011-01-12 19:54:19 +0000 |
---|---|---|
committer | mdf <mdf@FreeBSD.org> | 2011-01-12 19:54:19 +0000 |
commit | f6a71a40b2504dd316580a282777fc25cc857800 (patch) | |
tree | 9d6d1197b3a2cec7041211531dd927ad547788ce /sys/rpc/svc.c | |
parent | 536d58a251b1ba1915a1b29f23d1f9b221352d4a (diff) | |
download | FreeBSD-src-f6a71a40b2504dd316580a282777fc25cc857800.zip FreeBSD-src-f6a71a40b2504dd316580a282777fc25cc857800.tar.gz |
sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly.
Commit the kernel changes.
Diffstat (limited to 'sys/rpc/svc.c')
-rw-r--r-- | sys/rpc/svc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/rpc/svc.c b/sys/rpc/svc.c index 8678a18..16e911a 100644 --- a/sys/rpc/svc.c +++ b/sys/rpc/svc.c @@ -138,12 +138,12 @@ svcpool_create(const char *name, struct sysctl_oid_list *sysctl_base) &pool->sp_space_low, 0, "Low water mark for request space."); - SYSCTL_ADD_UINT(&pool->sp_sysctl, sysctl_base, OID_AUTO, + SYSCTL_ADD_INT(&pool->sp_sysctl, sysctl_base, OID_AUTO, "request_space_throttled", CTLFLAG_RD, &pool->sp_space_throttled, 0, "Whether nfs requests are currently throttled"); - SYSCTL_ADD_UINT(&pool->sp_sysctl, sysctl_base, OID_AUTO, + SYSCTL_ADD_INT(&pool->sp_sysctl, sysctl_base, OID_AUTO, "request_space_throttle_count", CTLFLAG_RD, &pool->sp_space_throttle_count, 0, "Count of times throttling based on request space has occurred"); |