diff options
author | Weihang Li <liweihang@huawei.com> | 2020-09-19 12:03:22 +0200 |
---|---|---|
committer | Jason Gunthorpe <jgg@nvidia.com> | 2020-09-24 20:56:27 +0200 |
commit | 05df49279f8926178ecb3ce88e61b63104cd6293 (patch) | |
tree | e5d166ad821eb9c2580bc8468bbe07d6153a9917 /drivers/infiniband | |
parent | RDMA/hns: Fix configuration of ack_req_freq in QPC (diff) | |
download | linux-05df49279f8926178ecb3ce88e61b63104cd6293.tar.xz linux-05df49279f8926178ecb3ce88e61b63104cd6293.zip |
RDMA/hns: Fix missing sq_sig_type when querying QP
The sq_sig_type field should be filled when querying QP, or the users may
get a wrong value.
Fixes: 926a01dc000d ("RDMA/hns: Add QP operations support for hip08 SoC")
Link: https://lore.kernel.org/r/1600509802-44382-9-git-send-email-liweihang@huawei.com
Signed-off-by: Weihang Li <liweihang@huawei.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/hns/hns_roce_hw_v2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c index 652ddfffa214..ee157bad4631 100644 --- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c +++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c @@ -4905,6 +4905,7 @@ done: } qp_init_attr->cap = qp_attr->cap; + qp_init_attr->sq_sig_type = hr_qp->sq_signal_bits; out: mutex_unlock(&hr_qp->mutex); |