Lines Matching refs:ah
261 struct ib_ah *ah; in cm_alloc_msg() local
264 ah = ib_create_ah(mad_agent->qp->pd, &cm_id_priv->av.ah_attr); in cm_alloc_msg()
265 if (IS_ERR(ah)) in cm_alloc_msg()
266 return PTR_ERR(ah); in cm_alloc_msg()
274 ib_destroy_ah(ah); in cm_alloc_msg()
279 m->ah = ah; in cm_alloc_msg()
293 struct ib_ah *ah; in cm_alloc_response_msg() local
295 ah = ib_create_ah_from_wc(port->mad_agent->qp->pd, mad_recv_wc->wc, in cm_alloc_response_msg()
297 if (IS_ERR(ah)) in cm_alloc_response_msg()
298 return PTR_ERR(ah); in cm_alloc_response_msg()
305 ib_destroy_ah(ah); in cm_alloc_response_msg()
308 m->ah = ah; in cm_alloc_response_msg()
315 ib_destroy_ah(msg->ah); in cm_free_msg()