]> git.openfabrics.org - ~shefty/librdmacm.git/commitdiff
ucmatose: Fix number of connections to disconnect
authorSean Hefty <sean.hefty@intel.com>
Thu, 4 Oct 2012 18:49:59 +0000 (11:49 -0700)
committerSean Hefty <sean.hefty@intel.com>
Thu, 4 Oct 2012 19:50:57 +0000 (12:50 -0700)
When ucmatose aborts because of issues trying to connect
to the server, it moves to disconnecting all connections.
However, not all connections may have been established.
The result is that ucmatose will hang in disconnect_events.
Fix this by setting the number of times that we need to
disconnect to the number of times that we successfully
connect.

This problem is based on a report by Doug Ledford
<dledford@redhat.com>

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
examples/cmatose.c

index 94fc4cd00d7900454ca1d9b9731260f6a72f46bf..9ea6777d88fa9a75c891dd3c80a108f3228cef73 100644 (file)
@@ -211,7 +211,6 @@ static int post_sends(struct cmatest_node *node)
 
 static void connect_error(void)
 {
-       test.disconnects_left--;
        test.connects_left--;
 }
 
@@ -323,6 +322,7 @@ static int cma_handler(struct rdma_cm_id *cma_id, struct rdma_cm_event *event)
        case RDMA_CM_EVENT_ESTABLISHED:
                ((struct cmatest_node *) cma_id->context)->connected = 1;
                test.connects_left--;
+               test.disconnects_left++;
                break;
        case RDMA_CM_EVENT_ADDR_ERROR:
        case RDMA_CM_EVENT_ROUTE_ERROR:
@@ -688,7 +688,6 @@ int main(int argc, char **argv)
        }
 
        test.connects_left = connections;
-       test.disconnects_left = connections;
 
        test.channel = rdma_create_event_channel();
        if (!test.channel) {