diff options
author | Eli Cohen <eli@dev.mellanox.co.il> | 2008-07-15 02:48:45 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2008-07-15 02:48:45 -0400 |
commit | d1f2cd895f8733faa9d79d09d825a2ed80002ac7 (patch) | |
tree | 45d8f35de710b091af17611f3362f82834b5630f /drivers/infiniband/hw/mlx4/qp.c | |
parent | e7e55829999deaab3f43e201a087731c02c54cf9 (diff) |
IB/mlx4: Configure QPs' max message size based on real device capability
ConnectX returns the max message size it supports through the
QUERY_DEV_CAP firmware command. When modifying a QP to RTR, the max
message size for the QP must be specified. This value must not exceed
the value declared through QUERY_DEV_CAP. The current code ignores
the max allowed size and unconditionally sets the value to 2^31. This
patch sets all QPs to the max value allowed as returned from firmware.
Signed-off-by: Eli Cohen <eli@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/mlx4/qp.c')
-rw-r--r-- | drivers/infiniband/hw/mlx4/qp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx4/qp.c b/drivers/infiniband/hw/mlx4/qp.c index 4b0ac5d68c46..76054a72f71b 100644 --- a/drivers/infiniband/hw/mlx4/qp.c +++ b/drivers/infiniband/hw/mlx4/qp.c | |||
@@ -908,7 +908,8 @@ static int __mlx4_ib_modify_qp(struct ib_qp *ibqp, | |||
908 | attr->path_mtu); | 908 | attr->path_mtu); |
909 | goto out; | 909 | goto out; |
910 | } | 910 | } |
911 | context->mtu_msgmax = (attr->path_mtu << 5) | 31; | 911 | context->mtu_msgmax = (attr->path_mtu << 5) | |
912 | ilog2(dev->dev->caps.max_msg_sz); | ||
912 | } | 913 | } |
913 | 914 | ||
914 | if (qp->rq.wqe_cnt) | 915 | if (qp->rq.wqe_cnt) |