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:
Navdeep Parhar 2014-11-12 20:57:29 +00:00
parent 6a3e479401
commit 4b63a7c678
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274450

View file

@ -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);