diff options
author | Raghavendra Bhat <raghavendra@redhat.com> | 2012-11-19 12:01:09 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2012-11-19 02:50:55 -0800 |
commit | 2100ebd982d09950a84a0d6ae25770ca17e6689c (patch) | |
tree | 27d22036f7c5e87c07d188f01bf23bb569c28be8 /tests/bugs | |
parent | 28994167a7fbbb35370b515eb72a9aaf49f58ac4 (diff) |
nfs: after resolving the entry use the linked inode instead of old inode
Change-Id: I56add0c3c852d096ec70a0e35610f46c2d12980a
BUG: 877885
Signed-off-by: Raghavendra Bhat <raghavendra@redhat.com>
Reviewed-on: http://review.gluster.org/4205
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'tests/bugs')
-rwxr-xr-x | tests/bugs/bug-877885.t | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/bugs/bug-877885.t b/tests/bugs/bug-877885.t new file mode 100755 index 00000000000..0d4620b0092 --- /dev/null +++ b/tests/bugs/bug-877885.t @@ -0,0 +1,35 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc + +cleanup; + +TEST glusterd +TEST pidof glusterd +TEST $CLI volume create $V0 replica 2 $H0:$B0/brick0 $H0:$B0/brick1 +TEST $CLI volume start $V0 + +sleep 5 + +## Mount FUSE with caching disabled +TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id $V0 \ +$M0; + +TEST touch $M0/file +TEST mkdir $M0/dir + +TEST mount -t nfs -o vers=3,nolock $H0:/$V0 $N0 +cd $N0 + +rm -rf * & + +TEST mount -t nfs -o retry=0,nolock,vers=3 $H0:/$V0 $N1; + +cd; + +kill %1; + +TEST umount $N0 +TEST umount $N1; + +cleanup |