diff options
author | Patrick Marchand Latifi | 2008-01-08 08:43:04 +0100 |
---|---|---|
committer | Roland Dreier | 2008-03-11 22:01:14 +0100 |
commit | 87d5aed85b2d79e4075ad2ca1449e9b98f657a09 (patch) | |
tree | fa8c4f5b110148b913c3f9b5663d7a95358d4fd4 /drivers/infiniband | |
parent | IB/ipath: Fix IB compliance problems with link state vs physical state (diff) | |
download | kernel-qcow2-linux-87d5aed85b2d79e4075ad2ca1449e9b98f657a09.tar.gz kernel-qcow2-linux-87d5aed85b2d79e4075ad2ca1449e9b98f657a09.tar.xz kernel-qcow2-linux-87d5aed85b2d79e4075ad2ca1449e9b98f657a09.zip |
IB/ipath: Fix potentially wrong RNR retry counter returned in ipath_query_qp()
There can be a case where the requester's rnr retry counter
(s_rnr_retry) is less than the number of rnr retries allowed per QP
(s_rnr_retry_cnt). This can happen if the s_rnr_retry counter is being
decremented and an ipath_query_qp call is issued during that time frame.
The fix is to always return the number of rnr retries allowed per QP
instead of the requester's rnr counter.
Found by code review.
Signed-off-by: Patrick Marchand Latifi <patrick.latifi@qlogic.com>
Acked-by: Ralph Campbell <ralph.campbell@qlogic.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/ipath/ipath_qp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_qp.c b/drivers/infiniband/hw/ipath/ipath_qp.c index 80dc623cee40..8214c0905c75 100644 --- a/drivers/infiniband/hw/ipath/ipath_qp.c +++ b/drivers/infiniband/hw/ipath/ipath_qp.c @@ -647,7 +647,7 @@ int ipath_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, attr->port_num = 1; attr->timeout = qp->timeout; attr->retry_cnt = qp->s_retry_cnt; - attr->rnr_retry = qp->s_rnr_retry; + attr->rnr_retry = qp->s_rnr_retry_cnt; attr->alt_port_num = 0; attr->alt_timeout = 0; |