Skip to content

Commit

Permalink
CONTRIB/IBMOCK: Add EFA runs to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tvegas1 committed Jan 9, 2025
1 parent 26f9f1d commit 269309f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions contrib/ibmock/stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,3 +218,11 @@ int ibv_cmd_modify_qp(struct ibv_qp *qp, struct ibv_qp_attr *attr,

return ENOTSUP;
}

struct ibv_srq *ibv_create_srq(struct ibv_pd *pd,
struct ibv_srq_init_attr *srq_init_attr)
{
(void)pd;
(void)srq_init_attr;
return NULL;
}

0 comments on commit 269309f

Please sign in to comment.