projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
391bd5f
)
RDMA/hns: Fix the bug with rq sge
author
oulijun
<oulijun@huawei.com>
Fri, 4 May 2018 02:57:09 +0000
(10:57 +0800)
committer
Doug Ledford
<dledford@redhat.com>
Wed, 9 May 2018 14:45:18 +0000
(10:45 -0400)
When received multiply rq sge, it should tag the
invalid lkey for the last non-zero length sge
when have some sges' length are zero. This patch
fixes it.
Signed-off-by: Lijun Ou <oulijun@huawei.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/hns/hns_roce_hw_v2.c
patch
|
blob
|
history
diff --git
a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
index 539b0caacb9fa9e8e32a1229c3432f19e3bda905..a40978bbc1d01020b3df8585ce5952e5bcb7d094 100644
(file)
--- a/
drivers/infiniband/hw/hns/hns_roce_hw_v2.c
+++ b/
drivers/infiniband/hw/hns/hns_roce_hw_v2.c
@@
-547,8
+547,8
@@
static int hns_roce_v2_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
}
if (i < hr_qp->rq.max_gs) {
- dseg
[i].
lkey = cpu_to_le32(HNS_ROCE_INVALID_LKEY);
- dseg
[i].
addr = 0;
+ dseg
->
lkey = cpu_to_le32(HNS_ROCE_INVALID_LKEY);
+ dseg
->
addr = 0;
}
/* rq support inline data */