Fix previous change to this file (r273811).
This has been submitted upstream and should show up there soon. Submitted by: Hariprasad at Chelsio dot com
This commit is contained in:
parent
6a3e479401
commit
4b63a7c678
@ -1049,19 +1049,20 @@ static int rping_run_client(struct rping_cb *cb)
|
||||
ret = rping_connect_client(cb);
|
||||
if (ret) {
|
||||
fprintf(stderr, "connect error %d\n", ret);
|
||||
goto err2;
|
||||
goto err3;
|
||||
}
|
||||
|
||||
ret = rping_test_client(cb);
|
||||
if (ret) {
|
||||
fprintf(stderr, "rping client failed: %d\n", ret);
|
||||
goto err3;
|
||||
goto err4;
|
||||
}
|
||||
ret = 0;
|
||||
err3:
|
||||
err4:
|
||||
rdma_disconnect(cb->cm_id);
|
||||
err2:
|
||||
err3:
|
||||
pthread_join(cb->cqthread, NULL);
|
||||
err2:
|
||||
rping_free_buffers(cb);
|
||||
err1:
|
||||
rping_free_qp(cb);
|
||||
|
Loading…
Reference in New Issue
Block a user