From 2100ebd982d09950a84a0d6ae25770ca17e6689c Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Mon, 19 Nov 2012 12:01:09 +0530 Subject: nfs: after resolving the entry use the linked inode instead of old inode Change-Id: I56add0c3c852d096ec70a0e35610f46c2d12980a BUG: 877885 Signed-off-by: Raghavendra Bhat Reviewed-on: http://review.gluster.org/4205 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- tests/bugs/bug-877885.t | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 tests/bugs/bug-877885.t (limited to 'tests/bugs/bug-877885.t') diff --git a/tests/bugs/bug-877885.t b/tests/bugs/bug-877885.t new file mode 100755 index 00000000..0d4620b0 --- /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 -- cgit