From: Hal Rosenstock Date: Tue, 27 Sep 2005 00:02:27 +0000 (+0000) Subject: r3553: Update to new ibv_create_cq API X-Git-Tag: v1.0-rc1~25 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=60c3e365dcd4f8ad5c40a07bc7d2d4a170b17cbb;p=~shefty%2Flibibcm.git r3553: Update to new ibv_create_cq API Signed-off-by: Hal Rosenstock Signed-off-by: Sean Hefty --- diff --git a/examples/cmpost.c b/examples/cmpost.c index de9300f..ba71ab2 100644 --- a/examples/cmpost.c +++ b/examples/cmpost.c @@ -315,7 +315,7 @@ static int init_node(struct cmtest_node *node, struct ibv_qp_init_attr *qp_attr) } cqe = message_count ? message_count * 2 : 2; - node->cq = ibv_create_cq(test.verbs, cqe, node); + node->cq = ibv_create_cq(test.verbs, cqe, node, NULL, 0); if (!node->cq) { printf("unable to create CQ\n"); goto error1;