Skip to content

Commit

Permalink
Merge pull request openucx#2386 from brminich/topic/uct_fix_xrq_err_msg
Browse files Browse the repository at this point in the history
UCT/RC: Fix XRQ creation error message
  • Loading branch information
yosefe authored Mar 12, 2018
2 parents 7ea282e + b035268 commit baec0c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/uct/ib/rc/base/rc_iface.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,8 @@ ucs_status_t uct_rc_iface_tag_init(uct_rc_iface_t *iface,

iface->rx.srq.srq = ibv_exp_create_srq(md->dev.ibv_context, srq_init_attr);
if (iface->rx.srq.srq == NULL) {
ucs_error("Failed to create TM XRQ: %m");
ucs_error("ibv_exp_create_srq(device=%s) failed: %m",
uct_ib_device_name(&md->dev));
return UCS_ERR_IO_ERROR;
}

Expand Down

0 comments on commit baec0c3

Please sign in to comment.