mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
Make a SYSCTL_NODE static
This commit is contained in:
parent
502a35d60f
commit
5ece08f57a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141633
@ -60,7 +60,7 @@ static unsigned devfs_generation;
|
||||
|
||||
static struct devfs_dirent *devfs_find (struct devfs_dirent *dd, const char *name, int namelen);
|
||||
|
||||
SYSCTL_NODE(_vfs, OID_AUTO, devfs, CTLFLAG_RW, 0, "DEVFS filesystem");
|
||||
static SYSCTL_NODE(_vfs, OID_AUTO, devfs, CTLFLAG_RW, 0, "DEVFS filesystem");
|
||||
SYSCTL_UINT(_vfs_devfs, OID_AUTO, noverflow, CTLFLAG_RW,
|
||||
&devfs_noverflowwant, 0, "Size of DEVFS overflow table");
|
||||
SYSCTL_UINT(_vfs_devfs, OID_AUTO, generation, CTLFLAG_RD,
|
||||
|
@ -66,7 +66,7 @@ static int dirchk = 1;
|
||||
static int dirchk = 0;
|
||||
#endif
|
||||
|
||||
SYSCTL_NODE(_vfs, OID_AUTO, e2fs, CTLFLAG_RD, 0, "EXT2FS filesystem");
|
||||
static SYSCTL_NODE(_vfs, OID_AUTO, e2fs, CTLFLAG_RD, 0, "EXT2FS filesystem");
|
||||
SYSCTL_INT(_vfs_e2fs, OID_AUTO, dircheck, CTLFLAG_RW, &dirchk, 0, "");
|
||||
|
||||
/*
|
||||
|
@ -66,7 +66,7 @@ static int dirchk = 1;
|
||||
static int dirchk = 0;
|
||||
#endif
|
||||
|
||||
SYSCTL_NODE(_vfs, OID_AUTO, e2fs, CTLFLAG_RD, 0, "EXT2FS filesystem");
|
||||
static SYSCTL_NODE(_vfs, OID_AUTO, e2fs, CTLFLAG_RD, 0, "EXT2FS filesystem");
|
||||
SYSCTL_INT(_vfs_e2fs, OID_AUTO, dircheck, CTLFLAG_RW, &dirchk, 0, "");
|
||||
|
||||
/*
|
||||
|
@ -90,7 +90,7 @@ static int data_lengths[] = {
|
||||
static STAILQ_HEAD(, ktr_request) ktr_todo;
|
||||
static STAILQ_HEAD(, ktr_request) ktr_free;
|
||||
|
||||
SYSCTL_NODE(_kern, OID_AUTO, ktrace, CTLFLAG_RD, 0, "KTRACE options");
|
||||
static SYSCTL_NODE(_kern, OID_AUTO, ktrace, CTLFLAG_RD, 0, "KTRACE options");
|
||||
|
||||
static u_int ktr_requestpool = KTRACE_REQUEST_POOL;
|
||||
TUNABLE_INT("kern.ktrace.request_pool", &ktr_requestpool);
|
||||
|
@ -108,7 +108,7 @@ static long jobrefid;
|
||||
#define AIOD_LIFETIME_DEFAULT (30 * hz)
|
||||
#endif
|
||||
|
||||
SYSCTL_NODE(_vfs, OID_AUTO, aio, CTLFLAG_RW, 0, "Async IO management");
|
||||
static SYSCTL_NODE(_vfs, OID_AUTO, aio, CTLFLAG_RW, 0, "Async IO management");
|
||||
|
||||
static int max_aio_procs = MAX_AIO_PROCS;
|
||||
SYSCTL_INT(_vfs_aio, OID_AUTO, max_aio_procs,
|
||||
|
Loading…
Reference in New Issue
Block a user