Commit 7721c7f7 authored by Pavel Hrdina's avatar Pavel Hrdina Committed by Paolo Bonzini
Browse files

scsi: reset cdrom tray statuses on scsi_disk_reset



Tray statuses should be also reset. Some guests may lock the tray and
right after resetting the guest it should be unlocked and closed. This
is done on power-on, reset and resume from suspend/hibernate on bare-metal.

This fix is already committed for IDE CD.
Check the commit a7f3d65b.

Test results on bare-metal:
  - on reset/power-on the CD-ROM tray is closed even before the monitor
    is turned on
  - on resume from suspend/hibernate the tray is also closed before
    the monitor is turned on

From test results it seems that this behavior is OS and probably BIOS
independent.

Cc: qemu-stable@nongnu.org
Signed-off-by: default avatarPavel Hrdina <phrdina@redhat.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent afd59989
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1984,6 +1984,9 @@ static void scsi_disk_reset(DeviceState *dev)
        nb_sectors--;
    }
    s->qdev.max_lba = nb_sectors;
    /* reset tray statuses */
    s->tray_locked = 0;
    s->tray_open = 0;
}

static void scsi_destroy(SCSIDevice *dev)