From 88f8a5ed0f4f1454ba53661fed0f676180e9be32 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Thu, 26 Nov 2009 15:34:15 +0100 Subject: [PATCH] scsi-disk: restruct emulation: VERIFY Move VERIFY emulation from scsi_send_command() to scsi_disk_emulate_command(). Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori --- hw/scsi-disk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c index 1507bcd1f..291078292 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: