qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v4 1/1] atapi: make change media detection for guests easier
@ 2012-11-26 15:37 Pavel Hrdina
  2012-11-26 15:54 ` Kevin Wolf
  0 siblings, 1 reply; 2+ messages in thread
From: Pavel Hrdina @ 2012-11-26 15:37 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, phrdina

If you have a guest with a media in the optical drive and you change
it, the windows guest cannot properly recognize this media change.

Windows needs to detect sense "NOT_READY with ASC_MEDIUM_NOT_PRESENT"
before we send sense "UNIT_ATTENTION with ASC_MEDIUM_MAY_HAVE_CHANGED".

v4: - removed fake_cdrom_changed introduced in v3
    - cleaned ide_drive_post_load

v3: - remove timeout as it isn't needed anymore

v2: - disable debug messages

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
---
 hw/ide/atapi.c | 15 ++++++++++-----
 hw/ide/core.c  |  6 ------
 2 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/hw/ide/atapi.c b/hw/ide/atapi.c
index 685cbaa..861fd2b 100644
--- a/hw/ide/atapi.c
+++ b/hw/ide/atapi.c
@@ -1124,12 +1124,17 @@ void ide_atapi_cmd(IDEState *s)
      * GET_EVENT_STATUS_NOTIFICATION to detect such tray open/close
      * states rely on this behavior.
      */
-    if (!s->tray_open && bdrv_is_inserted(s->bs) && s->cdrom_changed) {
-        ide_atapi_cmd_error(s, NOT_READY, ASC_MEDIUM_NOT_PRESENT);
+    if (!(atapi_cmd_table[s->io_buffer[0]].flags & ALLOW_UA) &&
+        !s->tray_open && bdrv_is_inserted(s->bs) && s->cdrom_changed) {
+
+        if (s->cdrom_changed == 1) {
+            ide_atapi_cmd_error(s, NOT_READY, ASC_MEDIUM_NOT_PRESENT);
+            s->cdrom_changed = 2;
+        } else {
+            ide_atapi_cmd_error(s, UNIT_ATTENTION, ASC_MEDIUM_MAY_HAVE_CHANGED);
+            s->cdrom_changed = 0;
+        }
 
-        s->cdrom_changed = 0;
-        s->sense_key = UNIT_ATTENTION;
-        s->asc = ASC_MEDIUM_MAY_HAVE_CHANGED;
         return;
     }
 
diff --git a/hw/ide/core.c b/hw/ide/core.c
index 7d6b0fa..d8f76e5 100644
--- a/hw/ide/core.c
+++ b/hw/ide/core.c
@@ -2147,12 +2147,6 @@ static int ide_drive_post_load(void *opaque, int version_id)
 {
     IDEState *s = opaque;
 
-    if (version_id < 3) {
-        if (s->sense_key == UNIT_ATTENTION &&
-            s->asc == ASC_MEDIUM_MAY_HAVE_CHANGED) {
-            s->cdrom_changed = 1;
-        }
-    }
     if (s->identify_set) {
         bdrv_set_enable_write_cache(s->bs, !!(s->identify_data[85] & (1 << 5)));
     }
-- 
1.7.11.7

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

* Re: [Qemu-devel] [PATCH v4 1/1] atapi: make change media detection for guests easier
  2012-11-26 15:37 [Qemu-devel] [PATCH v4 1/1] atapi: make change media detection for guests easier Pavel Hrdina
@ 2012-11-26 15:54 ` Kevin Wolf
  0 siblings, 0 replies; 2+ messages in thread
From: Kevin Wolf @ 2012-11-26 15:54 UTC (permalink / raw)
  To: Pavel Hrdina; +Cc: qemu-devel

Am 26.11.2012 16:37, schrieb Pavel Hrdina:
> If you have a guest with a media in the optical drive and you change
> it, the windows guest cannot properly recognize this media change.
> 
> Windows needs to detect sense "NOT_READY with ASC_MEDIUM_NOT_PRESENT"
> before we send sense "UNIT_ATTENTION with ASC_MEDIUM_MAY_HAVE_CHANGED".
> 
> v4: - removed fake_cdrom_changed introduced in v3
>     - cleaned ide_drive_post_load
> 
> v3: - remove timeout as it isn't needed anymore
> 
> v2: - disable debug messages
> 
> Signed-off-by: Pavel Hrdina <phrdina@redhat.com>

Thanks, applied to the block branch for 1.3.

Kevin

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

end of thread, other threads:[~2012-11-26 15:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-26 15:37 [Qemu-devel] [PATCH v4 1/1] atapi: make change media detection for guests easier Pavel Hrdina
2012-11-26 15:54 ` Kevin Wolf

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).