Lines Matching refs:h_ret
130 u64 rpage, cqx_fec, h_ret; in ehca_create_cq() local
184 h_ret = hipz_h_alloc_resource_cq(adapter_handle, my_cq, ¶m); in ehca_create_cq()
186 if (h_ret != H_SUCCESS) { in ehca_create_cq()
188 "h_ret=%lli device=%p", h_ret, device); in ehca_create_cq()
189 cq = ERR_PTR(ehca2ib_return_code(h_ret)); in ehca_create_cq()
212 h_ret = hipz_h_register_rpage_cq(adapter_handle, in ehca_create_cq()
222 if (h_ret < H_SUCCESS) { in ehca_create_cq()
226 h_ret, counter, param.act_pages); in ehca_create_cq()
233 if ((h_ret != H_SUCCESS) || vpage) { in ehca_create_cq()
237 h_ret); in ehca_create_cq()
242 if (h_ret != H_PAGE_REGISTERED) { in ehca_create_cq()
247 h_ret, counter, param.act_pages); in ehca_create_cq()
297 h_ret = hipz_h_destroy_cq(adapter_handle, my_cq, 1); in ehca_create_cq()
298 if (h_ret != H_SUCCESS) in ehca_create_cq()
300 "cq_num=%x h_ret=%lli", my_cq, my_cq->cq_number, h_ret); in ehca_create_cq()
316 u64 h_ret; in ehca_destroy_cq() local
345 h_ret = hipz_h_destroy_cq(adapter_handle, my_cq, 0); in ehca_destroy_cq()
346 if (h_ret == H_R_STATE) { in ehca_destroy_cq()
352 h_ret = hipz_h_destroy_cq(adapter_handle, my_cq, 1); in ehca_destroy_cq()
353 if (h_ret == H_SUCCESS) in ehca_destroy_cq()
357 if (h_ret != H_SUCCESS) { in ehca_destroy_cq()
359 "ehca_cq=%p cq_num=%x", h_ret, my_cq, cq_num); in ehca_destroy_cq()
360 return ehca2ib_return_code(h_ret); in ehca_destroy_cq()