projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
79d4420
)
RDMA/hns: Fix the bug with NULL pointer
author
oulijun
<oulijun@huawei.com>
Fri, 4 May 2018 02:57:13 +0000
(10:57 +0800)
committer
Doug Ledford
<dledford@redhat.com>
Wed, 9 May 2018 14:45:18 +0000
(10:45 -0400)
When the last QP of eight QPs is not exist in
hns_roce_v1_mr_free_work_fn function, the
print for qpn of hr_qp may introduce a
calltrace for NULL pointer.
Signed-off-by: Lijun Ou <oulijun@huawei.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/hns/hns_roce_hw_v1.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/infiniband/hw/hns/hns_roce_hw_v1.c
b/drivers/infiniband/hw/hns/hns_roce_hw_v1.c
index b3417a9a49de9dc6e64f82e5b5ea68fffd1e6844..8013d69c5ac496fe5ddaa10b9e48ef80f5db3c5e 100644
(file)
--- a/
drivers/infiniband/hw/hns/hns_roce_hw_v1.c
+++ b/
drivers/infiniband/hw/hns/hns_roce_hw_v1.c
@@
-1037,7
+1037,7
@@
static void hns_roce_v1_mr_free_work_fn(struct work_struct *work)
do {
ret = hns_roce_v1_poll_cq(&mr_free_cq->ib_cq, ne, wc);
- if (ret < 0) {
+ if (ret < 0
&& hr_qp
) {
dev_err(dev,
"(qp:0x%lx) starts, Poll cqe failed(%d) for mr 0x%x free! Remain %d cqe\n",
hr_qp->qpn, ret, hr_mr->key, ne);