mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 11:16:48 +07:00
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>
This commit is contained in:
parent
331552925d
commit
1bab74e691
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user