qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: malc <av1474@comtv.ru>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4767] Add VM save/load support
Date: Sat, 21 Jun 2008 17:14:54 +0000	[thread overview]
Message-ID: <E1KA6fu-0003Gy-N9@cvs.savannah.gnu.org> (raw)

Revision: 4767
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4767
Author:   malc
Date:     2008-06-21 17:14:54 +0000 (Sat, 21 Jun 2008)

Log Message:
-----------
Add VM save/load support

Modified Paths:
--------------
    trunk/hw/gus.c

Modified: trunk/hw/gus.c
===================================================================
--- trunk/hw/gus.c	2008-06-21 17:14:50 UTC (rev 4766)
+++ trunk/hw/gus.c	2008-06-21 17:14:54 UTC (rev 4767)
@@ -220,6 +220,40 @@
     return dma_len;
 }
 
+static void GUS_save (QEMUFile *f, void *opaque)
+{
+    int32_t val;
+    GUSState *s = opaque;
+
+    val = s->freq;    qemu_put_be32s (f, &val);
+    val = s->pos;     qemu_put_be32s (f, &val);
+    val = s->left;    qemu_put_be32s (f, &val);
+    val = s->shift;   qemu_put_be32s (f, &val);
+    val = s->irqs;    qemu_put_be32s (f, &val);
+    val = s->samples; qemu_put_be32s (f, &val);
+    qemu_put_be64s (f, &s->last_ticks);
+    qemu_put_buffer (f, s->himem, sizeof (s->himem));
+}
+
+static int GUS_load (QEMUFile *f, void *opaque, int version_id)
+{
+    int32_t val;
+    GUSState *s = opaque;
+
+    if (version_id != 1)
+        return -EINVAL;
+
+    qemu_get_be32s (f, &val); s->freq = val;
+    qemu_get_be32s (f, &val); s->pos = val;
+    qemu_get_be32s (f, &val); s->left = val;
+    qemu_get_be32s (f, &val); s->shift = val;
+    qemu_get_be32s (f, &val); s->irqs = val;
+    qemu_get_be32s (f, &val); s->samples = val;
+    qemu_get_be64s (f, &s->last_ticks);
+    qemu_get_buffer (f, s->himem, sizeof (s->himem));
+    return 0;
+}
+
 int GUS_init (AudioState *audio, qemu_irq *pic)
 {
     GUSState *s;
@@ -296,5 +330,7 @@
     s->pic = pic;
 
     AUD_set_active_out (s->voice, 1);
+
+    register_savevm ("gus", 0, 1, GUS_save, GUS_load, s);
     return 0;
 }

                 reply	other threads:[~2008-06-21 17:14 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=E1KA6fu-0003Gy-N9@cvs.savannah.gnu.org \
    --to=av1474@comtv.ru \
    --cc=qemu-devel@nongnu.org \
    /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).