Patch "RDMA/hns: Fix AH attr queried by query_qp" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    RDMA/hns: Fix AH attr queried by query_qp

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     rdma-hns-fix-ah-attr-queried-by-query_qp.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit e4e90157d178d88e481dea7eaf7a8ee305ea5b71
Author: Chengchang Tang <tangchengchang@xxxxxxxxxx>
Date:   Sat Nov 26 18:29:07 2022 +0800

    RDMA/hns: Fix AH attr queried by query_qp
    
    [ Upstream commit bc34c04f7b97c3794dec5a6d6d27ffd5f0e4f5c8 ]
    
    The queried AH attr is invalid. This patch fix it.
    
    This problem is found by rdma-core test test_mr_rereg_pd
    
    ERROR: test_mr_rereg_pd (tests.test_mr.MRTest)
    Test that cover rereg MR's PD with this flow:
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "./tests/test_mr.py", line 157, in test_mr_rereg_pd
        self.restate_qps()
      File "./tests/test_mr.py", line 113, in restate_qps
        self.server.qp.to_rts(self.server_qp_attr)
      File "qp.pyx", line 1137, in pyverbs.qp.QP.to_rts
      File "qp.pyx", line 1123, in pyverbs.qp.QP.to_rtr
    pyverbs.pyverbs_error.PyverbsRDMAError: Failed to modify QP state to RTR.
    Errno: 22, Invalid argument
    
    Fixes: 926a01dc000d ("RDMA/hns: Add QP operations support for hip08 SoC")
    Link: https://lore.kernel.org/r/20221126102911.2921820-3-xuhaoyue1@xxxxxxxxxxxxx
    Signed-off-by: Chengchang Tang <tangchengchang@xxxxxxxxxx>
    Signed-off-by: Haoyue Xu <xuhaoyue1@xxxxxxxxxxxxx>
    Signed-off-by: Jason Gunthorpe <jgg@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
index d242fa192f0d..ba60496c8f01 100644
--- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
+++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
@@ -5470,6 +5470,8 @@ static int hns_roce_v2_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr,
 
 		rdma_ah_set_sl(&qp_attr->ah_attr,
 			       hr_reg_read(&context, QPC_SL));
+		rdma_ah_set_port_num(&qp_attr->ah_attr, hr_qp->port + 1);
+		rdma_ah_set_ah_flags(&qp_attr->ah_attr, IB_AH_GRH);
 		grh->flow_label = hr_reg_read(&context, QPC_FL);
 		grh->sgid_index = hr_reg_read(&context, QPC_GMV_IDX);
 		grh->hop_limit = hr_reg_read(&context, QPC_HOPLIMIT);



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux