Home
last modified time | relevance | path

Searched refs:sgl_count (Results 1 – 8 of 8) sorted by relevance

/drivers/scsi/elx/efct/
Defct_scsi.c203 struct efct_scsi_sgl *sgl, u32 sgl_count, in efct_scsi_build_sgls() argument
217 for (i = 0; i < sgl_count; i++) { in efct_scsi_build_sgls()
222 sgl_count, rc); in efct_scsi_build_sgls()
304 io->sgl, io->sgl_count, io->hio_type); in efct_scsi_io_dispatch_hw_io()
620 struct efct_scsi_sgl *sgl, u32 sgl_count, u64 xwire_len, in efct_scsi_xfer_data() argument
627 io->sgl_count = sgl_count; in efct_scsi_xfer_data()
673 struct efct_scsi_sgl *sgl_ptr = &io->sgl[sgl_count - 1]; in efct_scsi_xfer_data()
684 io->sgl_count--; in efct_scsi_xfer_data()
713 struct efct_scsi_sgl *sgl, u32 sgl_count, u64 len, in efct_scsi_send_rd_data() argument
716 return efct_scsi_xfer_data(io, flags, sgl, sgl_count, in efct_scsi_send_rd_data()
[all …]
Defct_scsi.h171 u32 sgl_count, u64 wire_len, efct_scsi_io_cb_t cb, void *arg);
174 u32 sgl_count, u64 wire_len, efct_scsi_io_cb_t cb, void *arg);
Defct_io.c67 io->sgl_count = 0; in efct_io_pool_create()
133 io->sgl_count = 0; in efct_io_pool_io_alloc()
Defct_io.h112 u32 sgl_count; member
Defct_hw.h250 u32 sgl_count; member
624 u32 sgl_count);
Defct_hw.c357 io->sgl_count = io->def_sgl_count; in efct_hw_io_restore_sgl()
575 io->sgl_count = io->def_sgl_count; in efct_hw_setup_io()
1704 io->sgl_count = io->def_sgl_count; in efct_hw_io_init_sges()
/drivers/vhost/
Dscsi.c666 int sgl_count = 0; in vhost_scsi_calc_sgls() local
674 sgl_count = iov_iter_npages(iter, 0xffff); in vhost_scsi_calc_sgls()
675 if (sgl_count > max_sgls) { in vhost_scsi_calc_sgls()
677 " max_sgls: %d\n", __func__, sgl_count, max_sgls); in vhost_scsi_calc_sgls()
680 return sgl_count; in vhost_scsi_calc_sgls()
711 int sgl_count, ret; in vhost_scsi_mapal() local
715 sgl_count = vhost_scsi_calc_sgls(prot_iter, prot_bytes, in vhost_scsi_mapal()
717 if (sgl_count < 0) in vhost_scsi_mapal()
718 return sgl_count; in vhost_scsi_mapal()
720 sg_init_table(cmd->tvc_prot_sgl, sgl_count); in vhost_scsi_mapal()
[all …]
/drivers/target/
Dtarget_core_transport.c1589 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count) in transport_generic_map_mem_to_cmd() argument
1591 if (!sgl || !sgl_count) in transport_generic_map_mem_to_cmd()
1606 cmd->t_data_nents = sgl_count; in transport_generic_map_mem_to_cmd()
1692 struct scatterlist *sgl, u32 sgl_count, in target_submit_prep() argument
1729 if (sgl_count != 0) { in target_submit_prep()
1732 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count, in target_submit_prep()