Home
last modified time | relevance | path

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

/Linux-v6.6/drivers/scsi/elx/efct/
Defct_scsi.c202 struct efct_scsi_sgl *sgl, u32 sgl_count, in efct_scsi_build_sgls() argument
216 for (i = 0; i < sgl_count; i++) { in efct_scsi_build_sgls()
221 sgl_count, rc); in efct_scsi_build_sgls()
303 io->sgl, io->sgl_count, io->hio_type); in efct_scsi_io_dispatch_hw_io()
619 struct efct_scsi_sgl *sgl, u32 sgl_count, u64 xwire_len, in efct_scsi_xfer_data() argument
626 io->sgl_count = sgl_count; in efct_scsi_xfer_data()
672 struct efct_scsi_sgl *sgl_ptr = &io->sgl[sgl_count - 1]; in efct_scsi_xfer_data()
683 io->sgl_count--; in efct_scsi_xfer_data()
712 struct efct_scsi_sgl *sgl, u32 sgl_count, u64 len, in efct_scsi_send_rd_data() argument
715 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.c66 io->sgl_count = 0; in efct_io_pool_create()
132 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()
1703 io->sgl_count = io->def_sgl_count; in efct_hw_io_init_sges()
/Linux-v6.6/drivers/vhost/
Dscsi.c719 int sgl_count = 0; in vhost_scsi_calc_sgls() local
727 sgl_count = iov_iter_npages(iter, 0xffff); in vhost_scsi_calc_sgls()
728 if (sgl_count > max_sgls) { in vhost_scsi_calc_sgls()
730 " max_sgls: %d\n", __func__, sgl_count, max_sgls); in vhost_scsi_calc_sgls()
733 return sgl_count; in vhost_scsi_calc_sgls()
819 int sgl_count, ret; in vhost_scsi_mapal() local
822 sgl_count = vhost_scsi_calc_sgls(prot_iter, prot_bytes, in vhost_scsi_mapal()
824 if (sgl_count < 0) in vhost_scsi_mapal()
825 return sgl_count; in vhost_scsi_mapal()
827 sg_init_table(cmd->tvc_prot_sgl, sgl_count); in vhost_scsi_mapal()
[all …]
/Linux-v6.6/crypto/
Daf_alg.c651 unsigned int sgl_count = 0; in af_alg_count_tsgl() local
672 sgl_count++; in af_alg_count_tsgl()
676 return sgl_count; in af_alg_count_tsgl()
682 return sgl_count; in af_alg_count_tsgl()
/Linux-v6.6/include/target/
Dtarget_core_fabric.h166 struct scatterlist *sgl, u32 sgl_count,
/Linux-v6.6/drivers/target/
Dtarget_core_transport.c1621 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count) in transport_generic_map_mem_to_cmd() argument
1623 if (!sgl || !sgl_count) in transport_generic_map_mem_to_cmd()
1638 cmd->t_data_nents = sgl_count; in transport_generic_map_mem_to_cmd()
1725 struct scatterlist *sgl, u32 sgl_count, in target_submit_prep() argument
1762 if (sgl_count != 0) { in target_submit_prep()
1765 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count, in target_submit_prep()