Skip to content

Commit

Permalink
prov/mlx: Fix build issue
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Gladkov <[email protected]>
  • Loading branch information
dmitrygx committed Aug 25, 2017
1 parent 00ab461 commit 587674c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions prov/mlx/src/mlx_ep.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ static int mlx_ep_bind(struct fid *fid, struct fid *bfid, uint64_t flags)

switch (bfid->fclass) {
case FI_CLASS_CQ:
cq = container_of(bfid, struct util_cq, cq_fid.fid);
status = ofi_ep_bind_cq(&ep->ep, cq, flags);
break;
case FI_CLASS_AV:
Expand Down
2 changes: 1 addition & 1 deletion prov/mlx/src/mlx_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ struct fi_domain_attr mlx_domain_attrs = {
.rx_ctx_cnt = 1,
.max_ep_tx_ctx = 1,
.max_ep_rx_ctx = 1,
.mr_cnt = FI_MLX_DEF_MR_CNT;
.mr_cnt = FI_MLX_DEF_MR_CNT,
};

struct fi_rx_attr mlx_rx_attrs = {
Expand Down
2 changes: 1 addition & 1 deletion prov/mlx/src/mlx_tagged.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static ssize_t mlx_tagged_recvmsg(
uint64_t flags)
{
ucs_status_ptr_t status = NULL;
ucs_recv_callback_t cbf;
ucp_tag_recv_callback_t cbf;
struct mlx_ep* u_ep;
struct mlx_request *req;
struct util_cq* cq;
Expand Down

0 comments on commit 587674c

Please sign in to comment.