diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-08-03 10:49:13 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-12 08:29:01 -0500 |
commit | afa46c468acc18914c2773538f1b088c507766ee (patch) | |
tree | a190df34a155899f06a4f13e521efb0ffb86b52e /hw/scsi-disk.c | |
parent | 87dcd1b2c27e88a47be5036e9cf4c2767054eb31 (diff) |
scsi: move request parsing to common code
Also introduce the first occurrence of "independent" SCSIReqOps,
to handle invalid commands in common code.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/scsi-disk.c')
-rw-r--r-- | hw/scsi-disk.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c index eda4f8ea89..1abf90952b 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -964,11 +964,6 @@ static int32_t scsi_send_command(SCSIRequest *req, uint8_t *buf) outbuf = (uint8_t *)r->iov.iov_base; DPRINTF("Command: lun=%d tag=0x%x data=0x%02x", req->lun, req->tag, buf[0]); - if (scsi_req_parse(&r->req, buf) != 0) { - BADF("Unsupported command length, command %x\n", command); - scsi_check_condition(r, SENSE_CODE(INVALID_OPCODE)); - return 0; - } #ifdef DEBUG_SCSI { int i; |