summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/9p/trans_rdma.c6
-rw-r--r--net/sunrpc/xprtrdma/svc_rdma_transport.c8
-rw-r--r--net/sunrpc/xprtrdma/verbs.c13
3 files changed, 13 insertions, 14 deletions
diff --git a/net/9p/trans_rdma.c b/net/9p/trans_rdma.c
index bac8dad5dd69..b21c3c209815 100644
--- a/net/9p/trans_rdma.c
+++ b/net/9p/trans_rdma.c
@@ -685,9 +685,9 @@ rdma_create_trans(struct p9_client *client, const char *addr, char *args)
685 goto error; 685 goto error;
686 686
687 /* Create the Completion Queue */ 687 /* Create the Completion Queue */
688 rdma->cq = ib_alloc_cq(rdma->cm_id->device, client, 688 rdma->cq = ib_alloc_cq_any(rdma->cm_id->device, client,
689 opts.sq_depth + opts.rq_depth + 1, 689 opts.sq_depth + opts.rq_depth + 1,
690 0, IB_POLL_SOFTIRQ); 690 IB_POLL_SOFTIRQ);
691 if (IS_ERR(rdma->cq)) 691 if (IS_ERR(rdma->cq))
692 goto error; 692 goto error;
693 693
diff --git a/net/sunrpc/xprtrdma/svc_rdma_transport.c b/net/sunrpc/xprtrdma/svc_rdma_transport.c
index 3fe665152d95..4d3db6ee7f09 100644
--- a/net/sunrpc/xprtrdma/svc_rdma_transport.c
+++ b/net/sunrpc/xprtrdma/svc_rdma_transport.c
@@ -454,14 +454,14 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
454 dprintk("svcrdma: error creating PD for connect request\n"); 454 dprintk("svcrdma: error creating PD for connect request\n");
455 goto errout; 455 goto errout;
456 } 456 }
457 newxprt->sc_sq_cq = ib_alloc_cq(dev, newxprt, newxprt->sc_sq_depth, 457 newxprt->sc_sq_cq = ib_alloc_cq_any(dev, newxprt, newxprt->sc_sq_depth,
458 0, IB_POLL_WORKQUEUE); 458 IB_POLL_WORKQUEUE);
459 if (IS_ERR(newxprt->sc_sq_cq)) { 459 if (IS_ERR(newxprt->sc_sq_cq)) {
460 dprintk("svcrdma: error creating SQ CQ for connect request\n"); 460 dprintk("svcrdma: error creating SQ CQ for connect request\n");
461 goto errout; 461 goto errout;
462 } 462 }
463 newxprt->sc_rq_cq = ib_alloc_cq(dev, newxprt, rq_depth, 463 newxprt->sc_rq_cq =
464 0, IB_POLL_WORKQUEUE); 464 ib_alloc_cq_any(dev, newxprt, rq_depth, IB_POLL_WORKQUEUE);
465 if (IS_ERR(newxprt->sc_rq_cq)) { 465 if (IS_ERR(newxprt->sc_rq_cq)) {
466 dprintk("svcrdma: error creating RQ CQ for connect request\n"); 466 dprintk("svcrdma: error creating RQ CQ for connect request\n");
467 goto errout; 467 goto errout;
diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c
index 805b1f35e1ca..b10aa16557f0 100644
--- a/net/sunrpc/xprtrdma/verbs.c
+++ b/net/sunrpc/xprtrdma/verbs.c
@@ -521,18 +521,17 @@ int rpcrdma_ep_create(struct rpcrdma_xprt *r_xprt)
521 init_waitqueue_head(&ep->rep_connect_wait); 521 init_waitqueue_head(&ep->rep_connect_wait);
522 ep->rep_receive_count = 0; 522 ep->rep_receive_count = 0;
523 523
524 sendcq = ib_alloc_cq(ia->ri_id->device, NULL, 524 sendcq = ib_alloc_cq_any(ia->ri_id->device, NULL,
525 ep->rep_attr.cap.max_send_wr + 1, 525 ep->rep_attr.cap.max_send_wr + 1,
526 ia->ri_id->device->num_comp_vectors > 1 ? 1 : 0, 526 IB_POLL_WORKQUEUE);
527 IB_POLL_WORKQUEUE);
528 if (IS_ERR(sendcq)) { 527 if (IS_ERR(sendcq)) {
529 rc = PTR_ERR(sendcq); 528 rc = PTR_ERR(sendcq);
530 goto out1; 529 goto out1;
531 } 530 }
532 531
533 recvcq = ib_alloc_cq(ia->ri_id->device, NULL, 532 recvcq = ib_alloc_cq_any(ia->ri_id->device, NULL,
534 ep->rep_attr.cap.max_recv_wr + 1, 533 ep->rep_attr.cap.max_recv_wr + 1,
535 0, IB_POLL_WORKQUEUE); 534 IB_POLL_WORKQUEUE);
536 if (IS_ERR(recvcq)) { 535 if (IS_ERR(recvcq)) {
537 rc = PTR_ERR(recvcq); 536 rc = PTR_ERR(recvcq);
538 goto out2; 537 goto out2;