@@ -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) {
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 | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html