[SCSI] ide-scsi: use scsi_sg_count() instead of ->use_sg
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
ebb3e820b8
commit
2428427e49
|
@ -807,7 +807,7 @@ static int idescsi_queue (struct scsi_cmnd *cmd,
|
|||
memcpy (pc->c, cmd->cmnd, cmd->cmd_len);
|
||||
pc->buffer = NULL;
|
||||
pc->sg = scsi_sglist(cmd);
|
||||
pc->last_sg = sg_last(pc->sg, cmd->use_sg);
|
||||
pc->last_sg = sg_last(pc->sg, scsi_sg_count(cmd));
|
||||
pc->b_count = 0;
|
||||
pc->request_transfer = pc->buffer_size = scsi_bufflen(cmd);
|
||||
pc->scsi_cmd = cmd;
|
||||
|
|
Loading…
Reference in New Issue