Lines Matching refs:sglist
285 TW_SG_Entry sglist[1]; in twa_aen_drain_queue() local
306 memset(&sglist, 0, sizeof(TW_SG_Entry)); in twa_aen_drain_queue()
307 sglist[0].length = TW_SECTOR_SIZE; in twa_aen_drain_queue()
308 sglist[0].address = tw_dev->generic_buffer_phys[request_id]; in twa_aen_drain_queue()
310 if (sglist[0].address & TW_ALIGNMENT_9000_SGL) { in twa_aen_drain_queue()
320 if (twa_scsiop_execute_scsi(tw_dev, request_id, cdb, 1, sglist)) { in twa_aen_drain_queue()
431 TW_SG_Entry sglist[1]; in twa_aen_read_queue() local
444 memset(&sglist, 0, sizeof(TW_SG_Entry)); in twa_aen_read_queue()
445 sglist[0].length = TW_SECTOR_SIZE; in twa_aen_read_queue()
446 sglist[0].address = tw_dev->generic_buffer_phys[request_id]; in twa_aen_read_queue()
452 if (twa_scsiop_execute_scsi(tw_dev, request_id, cdb, 1, sglist)) { in twa_aen_read_queue()
1808 struct scatterlist *sglist = NULL, *sg; in DEF_SCSI_QCMD() local
1814 sglist = scsi_sglist(srb); in DEF_SCSI_QCMD()