X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=support%2Fnfs%2Fnfssvc.c;h=67089be0fb347317e02e825c11101244bf73a680;hb=e7c106f6008ab11558e595585fb72872b21ae624;hp=7419baf079c00e5b09bb91c556733d3346a35a15;hpb=8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9;p=nfs-utils.git diff --git a/support/nfs/nfssvc.c b/support/nfs/nfssvc.c index 7419baf..67089be 100644 --- a/support/nfs/nfssvc.c +++ b/support/nfs/nfssvc.c @@ -8,12 +8,35 @@ #include "config.h" +#include +#include + #include "nfslib.h" int nfssvc(int port, int nrservs) { struct nfsctl_arg arg; + int fd; + + fd = open("/proc/fs/nfsd/threads", O_WRONLY); + if (fd < 0) + fd = open("/proc/fs/nfs/threads", O_WRONLY); + if (fd >= 0) { + /* 2.5+ kernel with nfsd filesystem mounted. + * Just write the number in. + * Cannot handle port number yet, but does anyone care? + */ + char buf[20]; + int n; + snprintf(buf, 20,"%d\n", nrservs); + n = write(fd, buf, strlen(buf)); + close(fd); + if (n != strlen(buf)) + return -1; + else + return 0; + } arg.ca_version = NFSCTL_VERSION; arg.ca_svc.svc_nthreads = nrservs;