IB/core: Rename ib_create_ah to rdma_create_ah
Rename ib_create_ah to rdma_create_ah so its in sync with the rename of the ib address handle attribute Reviewed-by: Ira Weiny <ira.weiny@intel.com> Reviewed-by: Don Hiatt <don.hiatt@intel.com> Reviewed-by: Sean Hefty <sean.hefty@intel.com> Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> Signed-off-by: Dasaratharaman Chandramouli <dasaratharaman.chandramouli@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:

committed by
Doug Ledford

parent
90898850ec
commit
0a18cfe4f6
@@ -65,7 +65,7 @@ struct ipoib_ah *ipoib_create_ah(struct net_device *dev,
|
||||
ah->last_send = 0;
|
||||
kref_init(&ah->ref);
|
||||
|
||||
vah = ib_create_ah(pd, attr);
|
||||
vah = rdma_create_ah(pd, attr);
|
||||
if (IS_ERR(vah)) {
|
||||
kfree(ah);
|
||||
ah = (struct ipoib_ah *)vah;
|
||||
|
@@ -772,7 +772,7 @@ void opa_vnic_vema_send_trap(struct opa_vnic_adapter *adapter,
|
||||
}
|
||||
|
||||
ah_attr.dlid = trap_lid;
|
||||
ah = ib_create_ah(port->mad_agent->qp->pd, &ah_attr);
|
||||
ah = rdma_create_ah(port->mad_agent->qp->pd, &ah_attr);
|
||||
if (IS_ERR(ah)) {
|
||||
c_err("%s:Couldn't create new AH = %p\n", __func__, ah);
|
||||
c_err("%s:dlid = %d, sl = %d, port = %d\n", __func__,
|
||||
|
Reference in New Issue
Block a user