Lines Matching defs:ScsiReqBlk
212 struct ScsiReqBlk { struct
213 struct list_head list; /* next/prev ptrs for srb lists */
214 struct DeviceCtlBlk *dcb;
215 struct scsi_cmnd *cmd;
217 struct SGentry *segment_x; /* Linear array of hw sg entries (up to 64 entries) */
218 dma_addr_t sg_bus_addr; /* Bus address of sg list (ie, of segment_x) */
220 u8 sg_count; /* No of HW sg entries for this request */
221 u8 sg_index; /* Index of HW sg entry for this request */
222 size_t total_xfer_length; /* Total number of bytes remaining to be transferred */
223 size_t request_length; /* Total number of bytes in this request */
233 size_t xferred; /* Saved copy of total_xfer_length */
235 u16 state;
259 struct ScsiReqBlk *active_srb; argument