diff options
Diffstat (limited to 'drivers/infiniband/ulp')
-rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib_cm.c | 2 | ||||
-rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib_verbs.c | 2 | ||||
-rw-r--r-- | drivers/infiniband/ulp/iser/iser_verbs.c | 2 | ||||
-rw-r--r-- | drivers/infiniband/ulp/srp/ib_srp.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_cm.c b/drivers/infiniband/ulp/ipoib/ipoib_cm.c index 1e27930077e6..b8089a041581 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_cm.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_cm.c | |||
@@ -793,7 +793,7 @@ static int ipoib_cm_tx_init(struct ipoib_cm_tx *p, u32 qpn, | |||
793 | } | 793 | } |
794 | 794 | ||
795 | p->cq = ib_create_cq(priv->ca, ipoib_cm_tx_completion, NULL, p, | 795 | p->cq = ib_create_cq(priv->ca, ipoib_cm_tx_completion, NULL, p, |
796 | ipoib_sendq_size + 1); | 796 | ipoib_sendq_size + 1, 0); |
797 | if (IS_ERR(p->cq)) { | 797 | if (IS_ERR(p->cq)) { |
798 | ret = PTR_ERR(p->cq); | 798 | ret = PTR_ERR(p->cq); |
799 | ipoib_warn(priv, "failed to allocate tx cq: %d\n", ret); | 799 | ipoib_warn(priv, "failed to allocate tx cq: %d\n", ret); |
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_verbs.c b/drivers/infiniband/ulp/ipoib/ipoib_verbs.c index 7f3ec205e35f..5c3c6a43a52b 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_verbs.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_verbs.c | |||
@@ -187,7 +187,7 @@ int ipoib_transport_dev_init(struct net_device *dev, struct ib_device *ca) | |||
187 | if (!ret) | 187 | if (!ret) |
188 | size += ipoib_recvq_size; | 188 | size += ipoib_recvq_size; |
189 | 189 | ||
190 | priv->cq = ib_create_cq(priv->ca, ipoib_ib_completion, NULL, dev, size); | 190 | priv->cq = ib_create_cq(priv->ca, ipoib_ib_completion, NULL, dev, size, 0); |
191 | if (IS_ERR(priv->cq)) { | 191 | if (IS_ERR(priv->cq)) { |
192 | printk(KERN_WARNING "%s: failed to create CQ\n", ca->name); | 192 | printk(KERN_WARNING "%s: failed to create CQ\n", ca->name); |
193 | goto out_free_mr; | 193 | goto out_free_mr; |
diff --git a/drivers/infiniband/ulp/iser/iser_verbs.c b/drivers/infiniband/ulp/iser/iser_verbs.c index 1fc967464a28..89d6008bb673 100644 --- a/drivers/infiniband/ulp/iser/iser_verbs.c +++ b/drivers/infiniband/ulp/iser/iser_verbs.c | |||
@@ -76,7 +76,7 @@ static int iser_create_device_ib_res(struct iser_device *device) | |||
76 | iser_cq_callback, | 76 | iser_cq_callback, |
77 | iser_cq_event_callback, | 77 | iser_cq_event_callback, |
78 | (void *)device, | 78 | (void *)device, |
79 | ISER_MAX_CQ_LEN); | 79 | ISER_MAX_CQ_LEN, 0); |
80 | if (IS_ERR(device->cq)) | 80 | if (IS_ERR(device->cq)) |
81 | goto cq_err; | 81 | goto cq_err; |
82 | 82 | ||
diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c index 3468ae1ad1af..39bf057fbc43 100644 --- a/drivers/infiniband/ulp/srp/ib_srp.c +++ b/drivers/infiniband/ulp/srp/ib_srp.c | |||
@@ -197,7 +197,7 @@ static int srp_create_target_ib(struct srp_target_port *target) | |||
197 | return -ENOMEM; | 197 | return -ENOMEM; |
198 | 198 | ||
199 | target->cq = ib_create_cq(target->srp_host->dev->dev, srp_completion, | 199 | target->cq = ib_create_cq(target->srp_host->dev->dev, srp_completion, |
200 | NULL, target, SRP_CQ_SIZE); | 200 | NULL, target, SRP_CQ_SIZE, 0); |
201 | if (IS_ERR(target->cq)) { | 201 | if (IS_ERR(target->cq)) { |
202 | ret = PTR_ERR(target->cq); | 202 | ret = PTR_ERR(target->cq); |
203 | goto out; | 203 | goto out; |