nfsd: accept config to set number of threads

[Thomas: tweak commit title and author.]

Signed-off-by: Andreas Ehmanns <universeII@gmx.de>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Andreas Ehmanns 2015-12-17 20:45:05 +01:00 committed by Thomas Petazzoni
parent 31cb23ca0a
commit af3befec82

View File

@ -13,6 +13,14 @@ mkdir -p /run/nfs/sm
mkdir -p /run/nfs/sm.bak
touch /run/nfs/rmtab
CFG_FILE=/etc/default/nfsd
NR_THREADS=2
if [ -f "${CFG_FILE}" ]; then
. "${CFG_FILE}"
fi
start() {
# Start daemons.
printf "Starting NFS statd: "
@ -25,7 +33,7 @@ start() {
echo "done"
printf "Starting NFS daemon: "
rpc.nfsd 2
rpc.nfsd ${NR_THREADS}
echo "done"
printf "Starting NFS mountd: "
@ -40,7 +48,7 @@ stop() {
killall -q rpc.mountd
echo "done"
echo "Shutting down NFS daemon: "
printf "Shutting down NFS daemon: "
kill -9 `pidof nfsd` 2>/dev/null
echo "done"