/linux/drivers/usb/storage/ |
H A D | sddr09.c | 391 int use_sg) { in sddr09_readX() argument 418 buf, bulklen, use_sg, NULL); in sddr09_readX() 439 int nr_of_pages, int pageshift, unsigned char *buf, int use_sg) { in sddr09_read20() argument 444 buf, use_sg); in sddr09_read20() 462 int count, int controlshift, unsigned char *buf, int use_sg) { in sddr09_read21() argument 466 buf, use_sg); in sddr09_read21() 480 int nr_of_pages, int pageshift, unsigned char *buf, int use_sg) { in sddr09_read22() argument 485 buf, use_sg); in sddr09_read22() 504 int count, int controlshift, unsigned char *buf, int use_sg) { 508 buf, use_sg); [all …]
|
H A D | shuttle_usbat.c | 262 int use_sg) in usbat_bulk_read() argument 268 return usb_stor_bulk_transfer_sg(us, us->recv_bulk_pipe, buf, len, use_sg, NULL); in usbat_bulk_read() 277 int use_sg) in usbat_bulk_write() argument 283 return usb_stor_bulk_transfer_sg(us, us->send_bulk_pipe, buf, len, use_sg, NULL); in usbat_bulk_write() 447 int use_sg) in usbat_read_block() argument 468 result = usbat_bulk_read(us, buf, len, use_sg); in usbat_read_block() 481 int use_sg) in usbat_write_block() argument 503 result = usbat_bulk_write(us, buf, len, use_sg); in usbat_write_block() 525 int use_sg, in usbat_hp8200e_rw_block_test() argument 603 pipe, buf, len, use_sg, NULL); in usbat_hp8200e_rw_block_test() [all …]
|
H A D | transport.h | 83 void *buf, unsigned int length, int use_sg, int *residual);
|
H A D | ene_ub6250.c | 490 static int ene_send_scsi_cmd(struct us_data *us, u8 fDir, void *buf, int use_sg) in ene_send_scsi_cmd() argument 518 if (use_sg) { in ene_send_scsi_cmd()
|
/linux/drivers/soc/samsung/ |
H A D | exynos5422-asv.c | 346 if (asv->use_sg) { in exynos5422_asv_get_group() 464 asv->use_sg = false; in exynos5422_asv_init() 466 asv->use_sg = exynos5422_asv_parse_sg(pkg_id); in exynos5422_asv_init()
|
H A D | exynos-asv.h | 48 bool use_sg; member
|
/linux/drivers/target/tcm_fc/ |
H A D | tfc_io.c | 58 int use_sg; in ft_queue_data_in() local 88 use_sg = !(remaining % 4); in ft_queue_data_in() 113 fp = fc_frame_alloc(lport, use_sg ? 0 : frame_len); in ft_queue_data_in() 129 if (use_sg) { in ft_queue_data_in()
|
/linux/drivers/usb/usbip/ |
H A D | stub_rx.c | 476 int use_sg = pdu->u.cmd_submit.transfer_flags & USBIP_URB_DMA_MAP_SG; in stub_recv_cmd_submit() local 486 * Smatch reported the error case where use_sg is true and buf_len is 0. in stub_recv_cmd_submit() 496 if (use_sg && !buf_len) { in stub_recv_cmd_submit() 503 if (use_sg) { in stub_recv_cmd_submit() 552 if (use_sg) { in stub_recv_cmd_submit()
|
/linux/drivers/usb/musb/ |
H A D | musb_host.h | 42 bool use_sg; /* to track urb using sglist */ member
|
/linux/drivers/scsi/ |
H A D | st.h | 53 unsigned short use_sg; /* zero or max number of s/g segments for this adapter */ member
|
H A D | hpsa.c | 4582 int use_sg, i, sg_limit, chained; in hpsa_scatter_gather() local 4587 use_sg = scsi_dma_map(cmd); in hpsa_scatter_gather() 4588 if (use_sg < 0) in hpsa_scatter_gather() 4589 return use_sg; in hpsa_scatter_gather() 4591 if (!use_sg) in hpsa_scatter_gather() 4602 chained = use_sg > h->max_cmd_sg_entries; in hpsa_scatter_gather() 4603 sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg; in hpsa_scatter_gather() 4617 sg_limit = use_sg - sg_limit; in hpsa_scatter_gather() 4627 if (use_sg + chained > h->maxSG) in hpsa_scatter_gather() 4628 h->maxSG = use_sg + chained; in hpsa_scatter_gather() [all …]
|
H A D | advansys.c | 7427 int use_sg; in asc_build_req() local 7472 use_sg = scsi_dma_map(scp); in asc_build_req() 7473 if (use_sg < 0) { in asc_build_req() 7476 } else if (use_sg > 0) { in asc_build_req() 7481 if (use_sg > scp->device->host->sg_tablesize) { in asc_build_req() 7483 "sg_tablesize %d\n", use_sg, in asc_build_req() 7490 asc_sg_head = kzalloc(struct_size(asc_sg_head, sg_list, use_sg), in asc_build_req() 7503 asc_sg_head->entry_cnt = asc_scsi_q->q1.sg_queue_cnt = use_sg; in asc_build_req() 7510 scsi_for_each_sg(scp, slp, use_sg, sgcnt) { in asc_build_req() 7542 ADV_SCSI_REQ_Q *scsiqp, struct scsi_cmnd *scp, int use_sg) in adv_get_sglist() argument [all …]
|
H A D | ncr53c8xx.c | 532 int use_sg; in __map_scsi_sg_data() local 534 use_sg = scsi_dma_map(cmd); in __map_scsi_sg_data() 535 if (!use_sg) in __map_scsi_sg_data() 539 cmd_priv->data_mapping = use_sg; in __map_scsi_sg_data() 541 return use_sg; in __map_scsi_sg_data() 7476 int use_sg = scsi_sg_count(cmd); in ncr_scatter() local 7480 use_sg = map_scsi_sg_data(np, cmd); in ncr_scatter() 7481 if (use_sg > 0) { in ncr_scatter() 7485 if (use_sg > MAX_SCATTER) { in ncr_scatter() 7490 data = &cp->phys.data[MAX_SCATTER - use_sg]; in ncr_scatter() [all …]
|
H A D | 3w-xxxx.c | 1700 int i, use_sg; in tw_scsiop_read_write() local 1755 use_sg = scsi_dma_map(srb); in tw_scsiop_read_write() 1756 if (use_sg <= 0) in tw_scsiop_read_write() 1759 scsi_for_each_sg(tw_dev->srb[request_id], sg, use_sg, i) { in tw_scsiop_read_write()
|
H A D | 3w-9xxx.c | 147 unsigned char *cdb, int use_sg, 1799 unsigned char *cdb, int use_sg, in DEF_SCSI_QCMD() 1871 for (i = 0; i < use_sg; i++) { in DEF_SCSI_QCMD() 1879 command_packet->sgl_entries__lunh = TW_REQ_LUN_IN(0, use_sg); in DEF_SCSI_QCMD()
|
H A D | 3w-sas.c | 293 unsigned char *cdb, int use_sg, in twl_scsiop_execute_scsi() argument 349 for (i = 0; i < use_sg; i++) { in twl_scsiop_execute_scsi() 353 command_packet->sgl_entries__lunh = cpu_to_le16(TW_REQ_LUN_IN(0, use_sg)); in twl_scsiop_execute_scsi()
|
H A D | st.c | 1566 i = sgl_map_user_pages(STbp, STbp->use_sg, (unsigned long)buf, in setup_buffering() 3902 tb->use_sg = max_sg; in new_tape_buffer() 3930 max_segs = STbuffer->use_sg; in enlarge_buffer()
|
/linux/drivers/scsi/sym53c8xx_2/ |
H A D | sym_glue.c | 241 int use_sg; in sym_scatter() local 245 use_sg = scsi_dma_map(cmd); in sym_scatter() 246 if (use_sg > 0) { in sym_scatter() 251 if (use_sg > SYM_CONF_MAX_SG) { in sym_scatter() 256 data = &cp->phys.data[SYM_CONF_MAX_SG - use_sg]; in sym_scatter() 258 scsi_for_each_sg(cmd, sg, use_sg, segment) { in sym_scatter()
|
/linux/drivers/mmc/host/ |
H A D | cavium-thunderx.c | 110 host->use_sg = true; in thunder_mmc_probe()
|
H A D | cavium.h | 70 bool use_sg; member
|
H A D | cavium.c | 403 if (host->use_sg && data->sg_len > 1) in finish_dma() 619 if (host->use_sg && data->sg_len > 1) in prepare_dma() 1041 if (host->use_sg) in cvm_mmc_of_slot_probe()
|
/linux/drivers/usb/core/ |
H A D | message.c | 508 int use_sg; in usb_sg_init() local 521 use_sg = true; in usb_sg_init() 524 use_sg = false; in usb_sg_init() 556 if (use_sg) { in usb_sg_init()
|
/linux/drivers/usb/gadget/function/ |
H A D | f_fs.c | 259 bool use_sg; member 832 if (io_data->use_sg) in ffs_alloc_buffer() 843 if (io_data->use_sg) { in ffs_free_buffer() 1061 io_data->use_sg = gadget->sg_supported && data_len > PAGE_SIZE; in ffs_epfile_io() 1103 if (io_data->use_sg) { in ffs_epfile_io() 1154 if (io_data->use_sg) { in ffs_epfile_io()
|
/linux/drivers/scsi/arcmsr/ |
H A D | arcmsr_hba.c | 2996 unsigned short use_sg; in arcmsr_iop_message_xfer() local 3006 use_sg = scsi_sg_count(cmd); in arcmsr_iop_message_xfer() 3009 if (use_sg > 1) { in arcmsr_iop_message_xfer() 3239 if (use_sg) { in arcmsr_iop_message_xfer()
|
/linux/Documentation/scsi/ |
H A D | ChangeLog.megaraid | 72 > use_sg is 4
|