diff options
author | billf <billf@FreeBSD.org> | 1999-05-03 23:57:32 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-05-03 23:57:32 +0000 |
commit | dd35516544a379a6c23755ba8ea52e0cb126c095 (patch) | |
tree | 0f822319d7261647df8d637a9f7ddf894d0567a0 /sys/kern/vfs_subr.c | |
parent | 4dc3ea1a78da868bd91c20c2daef85b47bcb6778 (diff) | |
download | FreeBSD-src-dd35516544a379a6c23755ba8ea52e0cb126c095.zip FreeBSD-src-dd35516544a379a6c23755ba8ea52e0cb126c095.tar.gz |
Add sysctl descriptions to many SYSCTL_XXXs
PR: kern/11197
Submitted by: Adrian Chadd <adrian@FreeBSD.org>
Reviewed by: billf(spelling/style/minor nits)
Looked at by: bde(style)
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 97edbdb..abd32e2 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.188 1999/02/25 05:22:29 dillon Exp $ + * $Id: vfs_subr.c,v 1.189 1999/03/12 02:24:56 julian Exp $ */ /* @@ -134,7 +134,8 @@ LIST_HEAD(synclist, vnode); static struct synclist *syncer_workitem_pending; int desiredvnodes; -SYSCTL_INT(_kern, KERN_MAXVNODES, maxvnodes, CTLFLAG_RW, &desiredvnodes, 0, ""); +SYSCTL_INT(_kern, KERN_MAXVNODES, maxvnodes, CTLFLAG_RW, + &desiredvnodes, 0, "Maximum number of vnodes"); static void vfs_free_addrlist __P((struct netexport *nep)); static int vfs_free_netcred __P((struct radix_node *rn, void *w)); |