summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKrishnan Parthasarathi <kparthas@redhat.com>2013-04-15 22:07:21 +0530
committerVijay Bellur <vbellur@redhat.com>2013-04-16 10:42:51 -0700
commitdcebed550ebfc878b0b3bd02ab7fe15db6764f81 (patch)
tree2387f207399a9d3b430a492fdce173d17b92d714 /tests
parent9eb8fc771b32c0601969537ad7135edd89e49cf9 (diff)
glusterd: Avoided deadlock in single node cluster, glusterd restart
In a single node cluster, it is possible to deadlock on the "big lock", while restarting bricks. In glusterd_restart_bricks, we perform a glusterd_brick_connect, where we release the big lock in anticipation that glusterd_brick_rpc_notify could run in the same C stack (and deadlocking). So, in the restart code path, we could unlock before we have performed a lock on the big lock. To fix this, we need to take the big lock in the glusterd_launch_synctask 'thread' as well. Change-Id: I1abea1ca82b55c784b8a810a8194f254b32b1dcc BUG: 948686 Signed-off-by: Krishnan Parthasarathi <kparthas@redhat.com> Reviewed-on: http://review.gluster.org/4837 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs/bug-948686.t10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs/bug-948686.t b/tests/bugs/bug-948686.t
index 63c099a79..db9c198a9 100644
--- a/tests/bugs/bug-948686.t
+++ b/tests/bugs/bug-948686.t
@@ -34,3 +34,13 @@ TEST $CLI_2 volume stop $V0;
TEST $CLI_2 volume delete $V0;
cleanup;
+
+TEST glusterd;
+TEST $CLI volume create $V0 $H0:$B0/$V0
+TEST $CLI volume start $V0
+pkill glusterd;
+pkill glusterfsd;
+TEST glusterd
+TEST $CLI volume status $V0
+
+cleanup;