All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][QEMU] serial save load fix
@ 2008-05-15 17:01 Ben Guthro
  0 siblings, 0 replies; only message in thread
From: Ben Guthro @ 2008-05-15 17:01 UTC (permalink / raw)
  To: xen-devel; +Cc: Robert Phillips


[-- Attachment #1.1: Type: text/plain, Size: 1580 bytes --]

NOTE: An applicable subset of this patch was also submitted to upstream 
qemu.

SUMMARY:
This patch fixes several bugs in serial.c
(1) A typo in serial_save() where qemu_get_8s is called (should be 
qemu_put_8s)
(2) No support provided in serial_load() for version_id == 1 (should 
unmarshal
a 1 byte s->divider and should provide a default value for s->fcr
(3) Call serial_ioport_write() to initialize s->fcr. It is not sufficient
to load its value; other hidden values (such as s->recv_fifo.itl) must be
re-initialized.

Signed-off-by: Ben Guthro <bguthro@virtualiron.com 
<mailto:bguthro@virtualiron.com>>
Signed-off-by: Robert Phillips <rphillips@virtualiron.com 
<mailto:rphillips@virtualiron.com>>

diff -r a81184e1f8ae tools/ioemu/hw/serial.c
--- a/tools/ioemu/hw/serial.c
+++ b/tools/ioemu/hw/serial.c
@@ -708,12 +708,13 @@ static void serial_save(QEMUFile *f, voi
   qemu_put_8s(f,&s->lsr);
   qemu_put_8s(f,&s->msr);
   qemu_put_8s(f,&s->scr);
-    qemu_get_8s(f,&s->fcr);
+    qemu_put_8s(f,&s->fcr);
}

static int serial_load(QEMUFile *f, void *opaque, int version_id)
{
   SerialState *s = opaque;
+    uint8_t fcr;

   if(version_id > 2)
       return -EINVAL;
@@ -730,8 +731,13 @@ static int serial_load(QEMUFile *f, void
   qemu_get_8s(f,&s->lsr);
   qemu_get_8s(f,&s->msr);
   qemu_get_8s(f,&s->scr);
-    qemu_get_8s(f,&s->fcr);
-
+    if (version_id >= 2)
+        qemu_get_8s(f,&fcr);
+    else
+        fcr = 0; // disable fifos
+
+    /* Initialize fcr via setter to perform essential side-effects */
+    serial_ioport_write(s, 0x02, fcr);
   return 0;
}



[-- Attachment #1.2: Type: text/html, Size: 2308 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-05-15 17:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-15 17:01 [PATCH][QEMU] serial save load fix Ben Guthro

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.