qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] scsi: reset cdrom tray statuses on scsi_disk_reset
@ 2013-05-16 15:34 Pavel Hrdina
  2013-05-16 15:42 ` Eric Blake
  0 siblings, 1 reply; 9+ messages in thread
From: Pavel Hrdina @ 2013-05-16 15:34 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, pbonzini, phrdina

Tray statuses should be also reseted. Some guests may lock the tray
and after reset before any kernel is loaded the tray should be unlocked.

Also if you reset the real computer the tray is closed. We should
do the same in qemu.

This fix is already commited for IDE CD.
Check the commit a7f3d65b65b8c86a5ff0c0abcfefb45e2ec6fe4c.

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
---
 hw/scsi/scsi-disk.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c
index c8d2a99..02733dc 100644
--- a/hw/scsi/scsi-disk.c
+++ b/hw/scsi/scsi-disk.c
@@ -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)
-- 
1.8.1.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-05-17 12:35 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-16 15:34 [Qemu-devel] [PATCH] scsi: reset cdrom tray statuses on scsi_disk_reset Pavel Hrdina
2013-05-16 15:42 ` Eric Blake
2013-05-16 15:48   ` Pavel Hrdina
2013-05-16 16:11     ` Paolo Bonzini
2013-05-17 11:57       ` Pavel Hrdina
2013-05-17 12:02         ` Paolo Bonzini
2013-05-17 12:11           ` Pavel Hrdina
2013-05-17 12:15             ` Paolo Bonzini
2013-05-17 12:34               ` Pavel Hrdina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).