Lines Matching refs:ah
260 struct ib_ah *ah; in cm_alloc_msg() local
263 ah = ib_create_ah(mad_agent->qp->pd, &cm_id_priv->av.ah_attr); in cm_alloc_msg()
264 if (IS_ERR(ah)) in cm_alloc_msg()
265 return PTR_ERR(ah); in cm_alloc_msg()
272 ib_destroy_ah(ah); in cm_alloc_msg()
277 m->ah = ah; in cm_alloc_msg()
291 struct ib_ah *ah; in cm_alloc_response_msg() local
293 ah = ib_create_ah_from_wc(port->mad_agent->qp->pd, mad_recv_wc->wc, in cm_alloc_response_msg()
295 if (IS_ERR(ah)) in cm_alloc_response_msg()
296 return PTR_ERR(ah); in cm_alloc_response_msg()
302 ib_destroy_ah(ah); in cm_alloc_response_msg()
305 m->ah = ah; in cm_alloc_response_msg()
312 ib_destroy_ah(msg->ah); in cm_free_msg()