qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Ben Guthro <bguthro@virtualiron.com>
To: qemu-devel@nongnu.org
Cc: Robert Phillips <rphillips@virtualiron.com>
Subject: [Qemu-devel] [PATCH] serial save load fix
Date: Thu, 15 May 2008 13:01:44 -0400	[thread overview]
Message-ID: <482C6C78.6050708@virtualiron.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 1333 bytes --]

This patch fixes several bugs in serial.c
(1) 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
(2) 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 -urp nightly-qemu/hw/serial.c nightly-qemu.mod/hw/serial.c
--- nightly-qemu/hw/serial.c    2008-03-25 18:28:25.000000000 -0400
+++ nightly-qemu.mod/hw/serial.c    2008-05-15 11:42:49.000000000 -0400
@@ -338,6 +338,7 @@ static void serial_save(QEMUFile *f, voi
static int serial_load(QEMUFile *f, void *opaque, int version_id)
{
   SerialState *s = opaque;
+    uint8_t fcr;

   if(version_id > 2)
       return -EINVAL;
@@ -354,6 +355,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);
+    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 #2: Type: text/html, Size: 1920 bytes --]

             reply	other threads:[~2008-05-15 17:24 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-15 17:01 Ben Guthro [this message]
2008-05-17 18:36 ` [Qemu-devel] [PATCH] serial save load fix andrzej zaborowski
2008-05-17 18:37   ` andrzej zaborowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=482C6C78.6050708@virtualiron.com \
    --to=bguthro@virtualiron.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rphillips@virtualiron.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).