diff mbox

[29/30] scsi-disk: restruct emulation: VERIFY

Message ID 1259246056-5389-30-git-send-email-kraxel@redhat.com
State New
Headers show

Commit Message

Gerd Hoffmann Nov. 26, 2009, 2:34 p.m. UTC
Move VERIFY emulation from scsi_send_command() to
scsi_disk_emulate_command().

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 hw/scsi-disk.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c
index 1507bcd..2910782 100644
--- a/hw/scsi-disk.c
+++ b/hw/scsi-disk.c
@@ -794,6 +794,8 @@  static int scsi_disk_emulate_command(SCSIRequest *req, uint8_t *outbuf)
         outbuf[3] = 8;
         buflen = 16;
         break;
+    case VERIFY:
+        break;
     default:
         goto illegal_request;
     }
@@ -912,6 +914,7 @@  static int32_t scsi_send_command(SCSIDevice *d, uint32_t tag,
     case GET_CONFIGURATION:
     case SERVICE_ACTION_IN:
     case REPORT_LUNS:
+    case VERIFY:
         rc = scsi_disk_emulate_command(&r->req, outbuf);
         if (rc > 0) {
             r->iov.iov_len = rc;
@@ -940,9 +943,6 @@  static int32_t scsi_send_command(SCSIDevice *d, uint32_t tag,
         r->sector_count = len * s->cluster_size;
         is_write = 1;
         break;
-    case VERIFY:
-        DPRINTF("Verify (sector %" PRId64 ", count %d)\n", lba, len);
-        break;
     default:
 	DPRINTF("Unknown SCSI command (%2.2x)\n", buf[0]);
     fail: