RDMA/hns: Fixed wrong judgments in the goto branch
authorWenpeng Liang <liangwenpeng@huawei.com>
Sat, 30 Jan 2021 08:58:02 +0000 (16:58 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 4 Mar 2021 10:38:05 +0000 (11:38 +0100)
[ Upstream commit bb74fe7e81c8b2b65c6a351a247fdb9a969cbaec ]

When an error occurs, the qp_table must be cleared, regardless of whether
the SRQ feature is enabled.

Fixes: 5c1f167af112 ("RDMA/hns: Init SRQ table for hip08")
Link: https://lore.kernel.org/r/1611997090-48820-5-git-send-email-liweihang@huawei.com
Signed-off-by: Wenpeng Liang <liangwenpeng@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_main.c

index ae721fa..ba65823 100644 (file)
@@ -781,8 +781,7 @@ static int hns_roce_setup_hca(struct hns_roce_dev *hr_dev)
        return 0;
 
 err_qp_table_free:
-       if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_SRQ)
-               hns_roce_cleanup_qp_table(hr_dev);
+       hns_roce_cleanup_qp_table(hr_dev);
 
 err_cq_table_free:
        hns_roce_cleanup_cq_table(hr_dev);