Sophie

Sophie

distrib > Scientific%20Linux > 5x > x86_64 > media > main-src > by-pkgid > e536fc0c6270ec1d92a0fd41bb1f8360 > files > 82

rgmanager-2.0.52-28.el5_8.2.src.rpm

commit 790a470007b24c94089d2d97f18f5664c6ddaada
Author: Fabio M. Di Nitto <fdinitto@redhat.com>
Date:   Thu Jun 21 10:02:05 2012 +0200

    rgmanager: fix nfsrestart option to be effective
    
    The original patch a7d4a8aee32 was still racy in some conditions
    as other rpc.* and nfs* processes were holding a lock on the filesystem.
    
    stopping nfs in kernel is simply not enough in rhel5
    
    this fixed version does stop nfs completely and re-instante nfs exports.
    
    Resolves: rhbz#827390
    
    Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
    Acked-by: Lon Hohberger <lhh@redhat.com>

diff --git a/rgmanager/src/resources/clusterfs.sh b/rgmanager/src/resources/clusterfs.sh
index 89b30a2..49eb724 100755
--- a/rgmanager/src/resources/clusterfs.sh
+++ b/rgmanager/src/resources/clusterfs.sh
@@ -681,7 +681,10 @@ stopFilesystem() {
 	typeset -i max_tries=3		# how many times to try umount
 	typeset -i sleep_time=2		# time between each umount failure
 	typeset -i refs=0
-	typeset nfsdthreads
+	typeset nfsexports=""
+	typeset nfsexp=""
+	typeset nfsopts=""
+	typeset nfsacl=""
 	typeset done=""
 	typeset umount_failed=""
 	typeset force_umount=""
@@ -804,16 +807,22 @@ stop: Could not match $OCF_RESKEY_device with a real device"
 
 					if [ "$OCF_RESKEY_nfsrestart" = "yes" ] || \
 					   [ "$OCF_RESKEY_nfsrestart" = "1" ]; then
-						if [ -f /proc/fs/nfsd/threads ]; then
-							ocf_log warning "Restarting nfsd/nfslock"
-							nfsdthreads="$(cat /proc/fs/nfsd/threads)"
-							service nfslock stop
-							echo 0 > /proc/fs/nfsd/threads
-							echo $nfsdthreads > /proc/fs/nfsd/threads
-							service nfslock start
-						else
-							ocf_log err "Unable to determin nfsd information. nfsd restart aborted"
-						fi
+						ocf_log warning "Restarting nfsd/nfslock"
+						nfsexports=$(cat /var/lib/nfs/etab)
+						service nfslock stop
+						service nfs stop
+						service nfs start
+						service nfslock start
+						echo "$nfsexports" | { while read line; do
+							nfsexp=$(echo $line | awk '{print $1}')
+							nfsopts=$(echo $line | sed -e 's#.*(##g' -e 's#).*##g')
+							nfsacl=$(echo $line | awk '{print $2}' | sed -e 's#(.*##g')
+							if [ -n "$nfsopts" ]; then
+								exportfs -i -o "$nfsopts" "$nfsacl":$nfsexp
+							else
+								exportfs -i "$nfsacl":$nfsexp
+							fi
+						done; }
 					fi
 
 				else
diff --git a/rgmanager/src/resources/fs.sh b/rgmanager/src/resources/fs.sh
index 5724352..a98cddc 100755
--- a/rgmanager/src/resources/fs.sh
+++ b/rgmanager/src/resources/fs.sh
@@ -1019,7 +1019,10 @@ stopFilesystem() {
 	typeset -i max_tries=3		# how many times to try umount
 	typeset -i sleep_time=5		# time between each umount failure
 	typeset -i nfslock_reclaim=0
-	typeset nfsdthreads
+	typeset nfsexports=""
+	typeset nfsexp=""
+	typeset nfsopts=""
+	typeset nfsacl=""
 	typeset done=""
 	typeset umount_failed=""
 	typeset force_umount=""
@@ -1126,16 +1129,22 @@ stop: Could not match $OCF_RESKEY_device with a real device"
 
 				  if [ "$OCF_RESKEY_nfsrestart" = "yes" ] || \
 				     [ "$OCF_RESKEY_nfsrestart" = "1" ]; then
-					if [ -f /proc/fs/nfsd/threads ]; then
-						ocf_log warning "Restarting nfsd/nfslock"
-						nfsdthreads="$(cat /proc/fs/nfsd/threads)"
-						service nfslock stop
-						echo 0 > /proc/fs/nfsd/threads
-						echo $nfsdthreads > /proc/fs/nfsd/threads
-						service nfslock start
-					else
-						ocf_log err "Unable to determin nfsd information. nfsd restart aborted"
-					fi
+					ocf_log warning "Restarting nfsd/nfslock"
+					nfsexports=$(cat /var/lib/nfs/etab)
+					service nfslock stop
+					service nfs stop
+					service nfs start
+					service nfslock start
+					echo "$nfsexports" | { while read line; do
+						nfsexp=$(echo $line | awk '{print $1}')
+						nfsopts=$(echo $line | sed -e 's#.*(##g' -e 's#).*##g')
+						nfsacl=$(echo $line | awk '{print $2}' | sed -e 's#(.*##g')
+						if [ -n "$nfsopts" ]; then
+							exportfs -i -o "$nfsopts" "$nfsacl":$nfsexp
+						else
+							exportfs -i "$nfsacl":$nfsexp
+						fi
+					done; }
 				  fi
 				else
 				  fuser -kvm "$mp"