summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2002-05-19 19:21:40 +0000
committerpeter <peter@FreeBSD.org>2002-05-19 19:21:40 +0000
commitb834e5849a034f05db1e154792fe387afa5771ac (patch)
tree4c511c46ed70bddc0839d64dff5a2a2345f665c6 /sbin
parentc9901ea47097075871326c095fe4db635fa9e9e4 (diff)
downloadFreeBSD-src-b834e5849a034f05db1e154792fe387afa5771ac.zip
FreeBSD-src-b834e5849a034f05db1e154792fe387afa5771ac.tar.gz
Turn nfsiod into a vfs loader and sysctl wrapper that controls the number
of nfsiod kernel threads being run.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/nfsiod/nfsiod.86
-rw-r--r--sbin/nfsiod/nfsiod.c130
2 files changed, 47 insertions, 89 deletions
diff --git a/sbin/nfsiod/nfsiod.8 b/sbin/nfsiod/nfsiod.8
index e6eeac9..9c359c2 100644
--- a/sbin/nfsiod/nfsiod.8
+++ b/sbin/nfsiod/nfsiod.8
@@ -45,17 +45,17 @@ asynchronous I/O server
.Op Fl n Ar num_servers
.Sh DESCRIPTION
.Nm Nfsiod
-runs on an
+kernel processes runs on an
.Tn NFS
client machine to service asynchronous I/O requests to its server.
It improves performance but is not required for correct operation.
.Pp
-Unless otherwise specified, a single server is started.
+This program controls the maximum number of processes that the kernel runs.
.Pp
The options are as follows:
.Bl -tag -width indent
.It Fl n
-Specify how many servers are to be started.
+Specify how many servers are permitted to be started.
.El
.Pp
A client should run enough daemons to handle its maximum
diff --git a/sbin/nfsiod/nfsiod.c b/sbin/nfsiod/nfsiod.c
index 1b55d85..283132a 100644
--- a/sbin/nfsiod/nfsiod.c
+++ b/sbin/nfsiod/nfsiod.c
@@ -54,38 +54,29 @@ static const char rcsid[] =
#include <sys/mount.h>
#include <sys/time.h>
-#include <nfs/rpcv2.h>
-#include <nfs/nfs.h>
-
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
-/* Global defs */
-#ifdef DEBUG
-int debug = 1;
-#else
-int debug = 0;
-#endif
+#define MAXNFSDCNT 20
-void nonfs(int);
-void reapchild(int);
-void usage(void);
+static void
+usage(void)
+{
+ (void)fprintf(stderr, "usage: nfsiod [-n num_servers]\n");
+ exit(1);
+}
-/*
- * Nfsiod does asynchronous buffered I/O on behalf of the NFS client.
- * It does not have to be running for correct operation, but will
- * improve throughput.
- */
int
-main(argc, argv)
- int argc;
- char *argv[];
+main(int argc, char *argv[])
{
int ch, num_servers;
struct vfsconf vfc;
int error;
+ unsigned int iodmin;
+ unsigned int iodmax;
+ size_t len;
error = getvfsbyname("nfs", &vfc);
if (error && vfsisloadable("nfs")) {
@@ -94,20 +85,23 @@ main(argc, argv)
endvfsent(); /* flush cache */
error = getvfsbyname("nfs", &vfc);
}
- if(error)
+ if (error)
errx(1, "NFS support is not available in the running kernel");
-#define MAXNFSDCNT 20
-#define DEFNFSDCNT 1
- num_servers = DEFNFSDCNT;
+ num_servers = 0;
while ((ch = getopt(argc, argv, "n:")) != -1)
switch (ch) {
case 'n':
num_servers = atoi(optarg);
- if (num_servers < 1 || num_servers > MAXNFSDCNT) {
+ if (num_servers < 1) {
+ warnx("nfsiod count %d; reset to %d",
+ num_servers, 1);
+ num_servers = 1;
+ }
+ if (num_servers > MAXNFSDCNT) {
warnx("nfsiod count %d; reset to %d",
- num_servers, DEFNFSDCNT);
- num_servers = DEFNFSDCNT;
+ num_servers, MAXNFSDCNT);
+ num_servers = MAXNFSDCNT;
}
break;
case '?':
@@ -117,67 +111,31 @@ main(argc, argv)
argc -= optind;
argv += optind;
- /*
- * XXX
- * Backward compatibility, trailing number is the count of daemons.
- */
- if (argc > 1)
+ if (argc > 0)
usage();
- if (argc == 1) {
- num_servers = atoi(argv[0]);
- if (num_servers < 1 || num_servers > MAXNFSDCNT) {
- warnx("nfsiod count %d; reset to %d", num_servers,
- DEFNFSDCNT);
- num_servers = DEFNFSDCNT;
- }
- }
- if (debug == 0) {
- daemon(0, 0);
- (void)signal(SIGHUP, SIG_IGN);
- (void)signal(SIGINT, SIG_IGN);
- (void)signal(SIGQUIT, SIG_IGN);
- (void)signal(SIGSYS, nonfs);
+ if (num_servers == 0)
+ exit(0); /* no change */
+
+ len = sizeof iodmin;
+ error = sysctlbyname("vfs.nfs.iodmin", &iodmin, &len, NULL, 0);
+ if (error < 0)
+ err(1, "sysctlbyname(\"vfs.nfs.iodmin\")");
+ len = sizeof iodmax;
+ error = sysctlbyname("vfs.nfs.iodmax", &iodmax, &len, NULL, 0);
+ if (error < 0)
+ err(1, "sysctlbyname(\"vfs.nfs.iodmin\")");
+ /* Catch the case where we're lowering num_servers below iodmin */
+ if (iodmin > num_servers) {
+ iodmin = num_servers;
+ error = sysctlbyname("vfs.nfs.iodmin", NULL, 0, &iodmin,
+ sizeof iodmin);
+ if (error < 0)
+ err(1, "sysctlbyname(\"vfs.nfs.iodmin\")");
}
- (void)signal(SIGCHLD, reapchild);
-
- openlog("nfsiod:", LOG_PID, LOG_DAEMON);
-
- while (num_servers--)
- switch (fork()) {
- case -1:
- syslog(LOG_ERR, "fork: %m");
- exit (1);
- case 0:
- if (nfssvc(NFSSVC_BIOD, NULL) < 0) {
- syslog(LOG_ERR, "nfssvc: %m");
- exit (1);
- }
- exit(0);
- }
- exit (0);
-}
-
-void
-nonfs(signo)
- int signo;
-{
- syslog(LOG_ERR, "missing system call: NFS not available");
-}
-
-void
-reapchild(signo)
- int signo;
-{
-
- while (wait3(NULL, WNOHANG, NULL) > 0) {
- /* nothing */
- };
+ iodmax = num_servers;
+ error = sysctlbyname("vfs.nfs.iodmax", NULL, 0, &iodmax, sizeof iodmax);
+ if (error < 0)
+ err(1, "sysctlbyname(\"vfs.nfs.iodmax\")");
}
-void
-usage()
-{
- (void)fprintf(stderr, "usage: nfsiod [-n num_servers]\n");
- exit(1);
-}
OpenPOWER on IntegriCloud