diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-07-13 11:38:13 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-08-07 10:49:06 +0200 |
commit | 54414218d78c9d043417b27bb29bd0334b4e3cb5 (patch) | |
tree | 42bbab7fb2019556f16b166e862b6cc55974c53f | |
parent | 06f9847dc3da670c36629c80ae47fea4bf726268 (diff) | |
download | qemu-54414218d78c9d043417b27bb29bd0334b4e3cb5.zip qemu-54414218d78c9d043417b27bb29bd0334b4e3cb5.tar.gz qemu-54414218d78c9d043417b27bb29bd0334b4e3cb5.tar.bz2 |
usb-storage: fix SYNCHRONIZE_CACHE
Commit 59310659073d85745854f2f10c4292555c5a1c51 is incomplete,
we'll arrive in the scsi command complete callback in CSW state
and must handle that case correctly.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | hw/usb/dev-storage.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/usb/dev-storage.c b/hw/usb/dev-storage.c index 976fe1a..ff48d91 100644 --- a/hw/usb/dev-storage.c +++ b/hw/usb/dev-storage.c @@ -247,6 +247,9 @@ static void usb_msd_command_complete(SCSIRequest *req, uint32_t status, size_t r the status read packet. */ usb_msd_send_status(s, p); s->mode = USB_MSDM_CBW; + } else if (s->mode == USB_MSDM_CSW) { + usb_msd_send_status(s, p); + s->mode = USB_MSDM_CBW; } else { if (s->data_len) { int len = (p->iov.size - p->result); |