]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
IB/mthca: Rename to_ib_ah_attr to to_rdma_ah_attr
authorDasaratharaman Chandramouli <dasaratharaman.chandramouli@intel.com>
Sat, 29 Apr 2017 18:41:25 +0000 (14:41 -0400)
committerDoug Ledford <dledford@redhat.com>
Mon, 1 May 2017 18:32:43 +0000 (14:32 -0400)
local function  to_ib_ah_attr is renamed so it in
sync with the rename of the ib_ah_attr structure

Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Reviewed-by: Don Hiatt <don.hiatt@intel.com>
Reviewed-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Dasaratharaman Chandramouli <dasaratharaman.chandramouli@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/mthca/mthca_qp.c

index e0b8e437bd0f2ef0e63e4a3409d76ab8914658c6..baf65fe5286eb9501c1b61d8e5d86845c5f52df9 100644 (file)
@@ -393,9 +393,9 @@ static int to_ib_qp_access_flags(int mthca_flags)
        return ib_flags;
 }
 
-static void to_ib_ah_attr(struct mthca_dev *dev,
-                         struct rdma_ah_attr *ib_ah_attr,
-                         struct mthca_qp_path *path)
+static void to_rdma_ah_attr(struct mthca_dev *dev,
+                           struct rdma_ah_attr *ib_ah_attr,
+                           struct mthca_qp_path *path)
 {
        memset(ib_ah_attr, 0, sizeof *ib_ah_attr);
        ib_ah_attr->port_num      = (be32_to_cpu(path->port_pkey) >> 24) & 0x3;
@@ -469,8 +469,8 @@ int mthca_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_m
                to_ib_qp_access_flags(be32_to_cpu(context->params2));
 
        if (qp->transport == RC || qp->transport == UC) {
-               to_ib_ah_attr(dev, &qp_attr->ah_attr, &context->pri_path);
-               to_ib_ah_attr(dev, &qp_attr->alt_ah_attr, &context->alt_path);
+               to_rdma_ah_attr(dev, &qp_attr->ah_attr, &context->pri_path);
+               to_rdma_ah_attr(dev, &qp_attr->alt_ah_attr, &context->alt_path);
                qp_attr->alt_pkey_index =
                        be32_to_cpu(context->alt_path.port_pkey) & 0x7f;
                qp_attr->alt_port_num   = qp_attr->alt_ah_attr.port_num;