summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/nfs-utils
diff options
context:
space:
mode:
authorQiang Chen <qiang.chen@windriver.com>2013-10-25 14:49:11 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-10-26 16:08:40 +0100
commit13dbf09d9c15cda07bd3a11ae11c0a4d1d776116 (patch)
tree07432362c3c9cab53fd671684fa1242563b12b9b /meta/recipes-connectivity/nfs-utils
parent72eadfc0389138defaa2cfadaa6a0294f086c4d2 (diff)
downloadpoky-13dbf09d9c15cda07bd3a11ae11c0a4d1d776116.tar.gz
nfs-utils: nfsserver restart should kill and recreate nfsd kernel threads
nfsserver restart without killing kernel threads worked when portmap was the rpc publishing process and portmap was restarted. When rpcbind replaces portmap, nfsserver restart in this way does not work after an rpcbind restart. Steps to reproduce: 1). Make ext3 filesystem image on local host. cd /root dd if=/dev/zero of=test bs=1024K count=50 mkfs.ext3 -F test 2). runqemu qemux86-64 mkdir /mnt/wrtest mount -t ext3 -o loop test /mnt/wrtest echo "/mnt/wrtest *(sync,rw,no_subtree_check,no_root_squash)" > /etc/exports /etc/init.d/rpcbind restart /etc/init.d/nfsserver restart showmount -e localhost mkdir wrtest mount -t nfs localhost:/mnt/wrtest wrtest mount: mounting localhost:/mnt/wrtest on wrtest failed: Connection refused Modifying the nfsserver script to kill and restart kernel threads on restart makes the problem go away and is consistent with current RHEL/SUSE and Ubuntu/Debian mechanisms of handling the nfs server. (From OE-Core rev: 1a96b8d7dfc490fc61bbd470a8b09065750cd563) Signed-off-by: Rich Dubielzig <rich.dubielzig@windriver.com> Signed-off-by: Qiang Chen <qiang.chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/nfs-utils')
-rw-r--r--meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver11
1 files changed, 3 insertions, 8 deletions
diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver b/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver
index 8ee8d0bb50..d7cf6e0048 100644
--- a/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver
+++ b/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver
@@ -161,14 +161,9 @@ status)
161 [ $RETVAL -eq 0 ] && exit $rval 161 [ $RETVAL -eq 0 ] && exit $rval
162 exit $RETVAL;; 162 exit $RETVAL;;
163reload) test -r /etc/exports && exportfs -r;; 163reload) test -r /etc/exports && exportfs -r;;
164restart)exportfs -ua 164restart)
165 stop_mountd 165 $0 stop
166 stop_statd 166 $0 start;;
167 # restart does not restart the kernel threads,
168 # only the user mode processes
169 start_mountd
170 start_statd
171 test -r /etc/exports && exportfs -a;;
172*) echo "Usage: $0 {start|stop|status|reload|restart}" 167*) echo "Usage: $0 {start|stop|status|reload|restart}"
173 exit 1;; 168 exit 1;;
174esac 169esac