aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/cxgb3/iwch_provider.c
diff options
context:
space:
mode:
authorJon Mason <jon@opengridcomputing.com>2008-02-29 13:53:18 -0800
committerRoland Dreier <rolandd@cisco.com>2008-02-29 13:53:18 -0800
commit1bab74e691d3c7845df2342d202c0f1c2344c834 (patch)
tree9b99db64e082944f8892df1916f29a4bf1fda9a8 /drivers/infiniband/hw/cxgb3/iwch_provider.c
parentIB/fmr_pool: Flush all dirty FMRs from ib_fmr_pool_flush() (diff)
downloadlinux-dev-1bab74e691d3c7845df2342d202c0f1c2344c834.tar.xz
linux-dev-1bab74e691d3c7845df2342d202c0f1c2344c834.zip
RDMA/cxgb3: Return correct max_inline_data when creating a QP
Set cap.max_inline_data to the actual max inline data that the adapter support, so that userspace apps see the right value returned. Signed-off-by: Jon Mason <jon@opengridcomputing.com> Acked-by: Steve Wise <swise@opengridcomputing.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb3/iwch_provider.c')
-rw-r--r--drivers/infiniband/hw/cxgb3/iwch_provider.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/cxgb3/iwch_provider.c b/drivers/infiniband/hw/cxgb3/iwch_provider.c
index df1838f8f94d..ee3d63cd1f96 100644
--- a/drivers/infiniband/hw/cxgb3/iwch_provider.c
+++ b/drivers/infiniband/hw/cxgb3/iwch_provider.c
@@ -819,8 +819,11 @@ static struct ib_qp *iwch_create_qp(struct ib_pd *pd,
kfree(qhp);
return ERR_PTR(-ENOMEM);
}
+
attrs->cap.max_recv_wr = rqsize - 1;
attrs->cap.max_send_wr = sqsize;
+ attrs->cap.max_inline_data = T3_MAX_INLINE;
+
qhp->rhp = rhp;
qhp->attr.pd = php->pdid;
qhp->attr.scq = ((struct iwch_cq *) attrs->send_cq)->cq.cqid;