IB/core: Rename ib_destroy_ah to rdma_destroy_ah
Rename ib_destroy_ah to rdma_destroy_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>
Dieser Commit ist enthalten in:

committet von
Doug Ledford

Ursprung
bfbfd661c9
Commit
3652315934
@@ -658,7 +658,7 @@ static void __ipoib_reap_ah(struct net_device *dev)
|
||||
list_for_each_entry_safe(ah, tah, &priv->dead_ahs, list)
|
||||
if ((int) priv->tx_tail - (int) ah->last_send >= 0) {
|
||||
list_del(&ah->list);
|
||||
ib_destroy_ah(ah->ah);
|
||||
rdma_destroy_ah(ah->ah);
|
||||
kfree(ah);
|
||||
}
|
||||
|
||||
|
@@ -603,7 +603,7 @@ static void vema_set(struct opa_vnic_vema_port *port,
|
||||
static void vema_send(struct ib_mad_agent *mad_agent,
|
||||
struct ib_mad_send_wc *mad_wc)
|
||||
{
|
||||
ib_destroy_ah(mad_wc->send_buf->ah);
|
||||
rdma_destroy_ah(mad_wc->send_buf->ah);
|
||||
ib_free_send_mad(mad_wc->send_buf);
|
||||
}
|
||||
|
||||
@@ -677,7 +677,7 @@ static void vema_recv(struct ib_mad_agent *mad_agent,
|
||||
ib_free_send_mad(rsp);
|
||||
|
||||
err_rsp:
|
||||
ib_destroy_ah(ah);
|
||||
rdma_destroy_ah(ah);
|
||||
free_recv_mad:
|
||||
ib_free_recv_mad(mad_wc);
|
||||
}
|
||||
@@ -842,7 +842,7 @@ void opa_vnic_vema_send_trap(struct opa_vnic_adapter *adapter,
|
||||
}
|
||||
|
||||
err_sndbuf:
|
||||
ib_destroy_ah(ah);
|
||||
rdma_destroy_ah(ah);
|
||||
err_exit:
|
||||
v_err("Aborting trap\n");
|
||||
}
|
||||
|
@@ -417,7 +417,7 @@ static void srpt_mgmt_method_get(struct srpt_port *sp, struct ib_mad *rq_mad,
|
||||
static void srpt_mad_send_handler(struct ib_mad_agent *mad_agent,
|
||||
struct ib_mad_send_wc *mad_wc)
|
||||
{
|
||||
ib_destroy_ah(mad_wc->send_buf->ah);
|
||||
rdma_destroy_ah(mad_wc->send_buf->ah);
|
||||
ib_free_send_mad(mad_wc->send_buf);
|
||||
}
|
||||
|
||||
@@ -481,7 +481,7 @@ static void srpt_mad_recv_handler(struct ib_mad_agent *mad_agent,
|
||||
ib_free_send_mad(rsp);
|
||||
|
||||
err_rsp:
|
||||
ib_destroy_ah(ah);
|
||||
rdma_destroy_ah(ah);
|
||||
err:
|
||||
ib_free_recv_mad(mad_wc);
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren