diff options
author | Dasaratharaman Chandramouli <dasaratharaman.chandramouli@intel.com> | 2017-04-29 14:41:25 -0400 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-05-01 14:32:43 -0400 |
commit | 766b7f6cf0c0bc3a74403074b78c1a2f26cb3fd1 (patch) | |
tree | e72f30daf59e7190d797cd45b9ea18ad370f4cd0 | |
parent | 38349389fece9dc1509f43791e086009a1b79db4 (diff) |
IB/mthca: Rename to_ib_ah_attr to to_rdma_ah_attr
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>
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_qp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_qp.c b/drivers/infiniband/hw/mthca/mthca_qp.c index e0b8e437bd0f..baf65fe5286e 100644 --- a/drivers/infiniband/hw/mthca/mthca_qp.c +++ b/drivers/infiniband/hw/mthca/mthca_qp.c | |||
@@ -393,9 +393,9 @@ static int to_ib_qp_access_flags(int mthca_flags) | |||
393 | return ib_flags; | 393 | return ib_flags; |
394 | } | 394 | } |
395 | 395 | ||
396 | static void to_ib_ah_attr(struct mthca_dev *dev, | 396 | static void to_rdma_ah_attr(struct mthca_dev *dev, |
397 | struct rdma_ah_attr *ib_ah_attr, | 397 | struct rdma_ah_attr *ib_ah_attr, |
398 | struct mthca_qp_path *path) | 398 | struct mthca_qp_path *path) |
399 | { | 399 | { |
400 | memset(ib_ah_attr, 0, sizeof *ib_ah_attr); | 400 | memset(ib_ah_attr, 0, sizeof *ib_ah_attr); |
401 | ib_ah_attr->port_num = (be32_to_cpu(path->port_pkey) >> 24) & 0x3; | 401 | 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 | |||
469 | to_ib_qp_access_flags(be32_to_cpu(context->params2)); | 469 | to_ib_qp_access_flags(be32_to_cpu(context->params2)); |
470 | 470 | ||
471 | if (qp->transport == RC || qp->transport == UC) { | 471 | if (qp->transport == RC || qp->transport == UC) { |
472 | to_ib_ah_attr(dev, &qp_attr->ah_attr, &context->pri_path); | 472 | to_rdma_ah_attr(dev, &qp_attr->ah_attr, &context->pri_path); |
473 | to_ib_ah_attr(dev, &qp_attr->alt_ah_attr, &context->alt_path); | 473 | to_rdma_ah_attr(dev, &qp_attr->alt_ah_attr, &context->alt_path); |
474 | qp_attr->alt_pkey_index = | 474 | qp_attr->alt_pkey_index = |
475 | be32_to_cpu(context->alt_path.port_pkey) & 0x7f; | 475 | be32_to_cpu(context->alt_path.port_pkey) & 0x7f; |
476 | qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num; | 476 | qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num; |