]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
RDMA/hns: Fix missing sq_sig_type when querying QP
authorWeihang Li <liweihang@huawei.com>
Sat, 19 Sep 2020 10:03:22 +0000 (18:03 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 29 Oct 2020 09:07:59 +0000 (10:07 +0100)
[ Upstream commit 05df49279f8926178ecb3ce88e61b63104cd6293 ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/infiniband/hw/hns/hns_roce_hw_v2.c

index d3b983d9f757bdb59d18d761a76413ebcc9c280f..37809a0b50e25dca614149a7cf344c908421bdac 100644 (file)
@@ -4819,6 +4819,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);