From 7a1e42e0d4be42fa8aa0c7a430b4fbc3ab509705 Mon Sep 17 00:00:00 2001 From: Shyam Date: Tue, 12 Aug 2014 10:48:27 -0400 Subject: cluster/dht: Fix dht_access treating directory like files When the cluster topology changes due to add-brick, all sub volumes of DHT will not contain the directories till a rebalance is completed. Till the rebalance is run, if a caller bypasses lookup and calls access due to saved/cached inode information (like NFS server does) then, dht_access misreads the error (ESTALE/ENOENT) from the new subvolumes and incorrectly tries to handle the inode as a file. This results in the directories in memory state in DHT to be corrupted and not heal even post a rebalance. This commit fixes the problem in dht_access thereby preventing DHT from misrepresenting a directory as a file in the case presented above. Change-Id: Idcdaa3837db71c8fe0a40ec0084a6c3dbe27e772 BUG: 1139997 Signed-off-by: Shyam Reviewed-on: http://review.gluster.org/8462 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur Reviewed-on: http://review.gluster.org/8678 Reviewed-by: Kaleb KEITHLEY --- tests/include.rc | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/include.rc') diff --git a/tests/include.rc b/tests/include.rc index 54427dbda50..141e6581c5d 100644 --- a/tests/include.rc +++ b/tests/include.rc @@ -9,6 +9,7 @@ DEBUG=${DEBUG:=0} # turn on debugging? NFS_EXPORT_TIMEOUT=20 UMOUNT_TIMEOUT=5 +REBALANCE_TIMEOUT=200 statedumpdir=`gluster --print-statedumpdir`; # Default directory for statedump -- cgit