diff mbox

scsi-bus: Remove tape command from scsi_req_xfer

Message ID 1457365822-22435-1-git-send-email-apyrgio@arrikto.com (mailing list archive)
State New, archived
Headers show

Commit Message

Alex Pyrgiotis March 7, 2016, 3:50 p.m. UTC
Remove the RECOVER_BUFFERED_DATA command from the list of commands that
are handled by scsi_req_xfer(). Given that this command is
tape-specific, it should be handled only by scsi_stream_req_xfer().

Signed-off-by: Alex Pyrgiotis <apyrgio@arrikto.com>

Comments

Paolo Bonzini March 7, 2016, 4:56 p.m. UTC | #1
On 07/03/2016 16:50, Alex Pyrgiotis wrote:
> Remove the RECOVER_BUFFERED_DATA command from the list of commands that
> are handled by scsi_req_xfer(). Given that this command is
> tape-specific, it should be handled only by scsi_stream_req_xfer().
> 
> Signed-off-by: Alex Pyrgiotis <apyrgio@arrikto.com>
> 
> diff --git a/hw/scsi/scsi-bus.c b/hw/scsi/scsi-bus.c
> index 6dcdbc0..a21752b 100644
> --- a/hw/scsi/scsi-bus.c
> +++ b/hw/scsi/scsi-bus.c
> @@ -989,7 +989,6 @@ static int scsi_req_xfer(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
>          }
>          /* fall through */
>      case READ_10:
> -    case RECOVER_BUFFERED_DATA:
>      case READ_12:
>      case READ_16:
>          cmd->xfer *= dev->blocksize;
> 

Queued, thanks.

Paolo
diff mbox

Patch

diff --git a/hw/scsi/scsi-bus.c b/hw/scsi/scsi-bus.c
index 6dcdbc0..a21752b 100644
--- a/hw/scsi/scsi-bus.c
+++ b/hw/scsi/scsi-bus.c
@@ -989,7 +989,6 @@  static int scsi_req_xfer(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
         }
         /* fall through */
     case READ_10:
-    case RECOVER_BUFFERED_DATA:
     case READ_12:
     case READ_16:
         cmd->xfer *= dev->blocksize;