Home
last modified time | relevance | path

Searched refs:hio (Results 1 – 4 of 4) sorted by relevance

/drivers/scsi/elx/efct/
Defct_scsi.c108 efct_target_io_cb(struct efct_hw_io *hio, u32 length, int status, in efct_target_io_cb() argument
202 efct_scsi_build_sgls(struct efct_hw *hw, struct efct_hw_io *hio, in efct_scsi_build_sgls() argument
211 rc = efct_hw_io_init_sges(hw, hio, type); in efct_scsi_build_sgls()
219 rc = efct_hw_io_add_sge(hw, hio, sgl[i].addr, sgl[i].len); in efct_scsi_build_sgls()
232 struct efct_hw_io *hio = io->hio; in efc_log_sgl() local
239 upper_32_bits(hio->def_sgl.phys), in efc_log_sgl()
240 lower_32_bits(hio->def_sgl.phys)); in efc_log_sgl()
241 n_sge = (hio->sgl == &hio->def_sgl) ? hio->n_sge : hio->def_sgl_count; in efc_log_sgl()
242 for (i = 0, data = hio->def_sgl.virt; i < n_sge; i++, data++) { in efc_log_sgl()
266 (cb)(io->hio, 0, SLI4_FC_WCQE_STATUS_DISPATCH_ERROR, 0, io); in efct_scsi_check_pending_async_cb()
[all …]
Defct_io.c129 io->hio = NULL; in efct_io_pool_io_alloc()
151 struct efct_hw_io *hio = NULL; in efct_io_pool_io_free() local
157 hio = io->hio; in efct_io_pool_io_free()
158 io->hio = NULL; in efct_io_pool_io_free()
164 if (hio) in efct_io_pool_io_free()
165 efct_hw_io_free(&efct->hw, hio); in efct_io_pool_io_free()
Defct_hw.c2573 struct efct_hw_io *hio; in efct_hw_bls_send() local
2583 hio = efct_hw_io_alloc(hw); in efct_hw_bls_send()
2584 if (!hio) { in efct_hw_bls_send()
2589 hio->done = cb; in efct_hw_bls_send()
2590 hio->arg = arg; in efct_hw_bls_send()
2592 bls_params->xri = hio->indicator; in efct_hw_bls_send()
2593 bls_params->tag = hio->reqtag; in efct_hw_bls_send()
2596 hio->type = EFCT_HW_BLS_ACC; in efct_hw_bls_send()
2600 hio->type = EFCT_HW_BLS_RJT; in efct_hw_bls_send()
2608 if (sli_xmit_bls_rsp64_wqe(&hw->sli, hio->wqe.wqebuf, in efct_hw_bls_send()
[all …]
Defct_io.h119 struct efct_hw_io *hio; member