From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 5/9] vmstate: add VMSTATE_INT64_ARRAY
Date: Thu, 10 Mar 2011 12:33:52 +0100 [thread overview]
Message-ID: <bcd583cf40e4365da6010dc46031fd6098f80c86.1299756608.git.quintela@redhat.com> (raw)
In-Reply-To: <cover.1299756608.git.quintela@redhat.com>
In-Reply-To: <cover.1299756608.git.quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
hw/hw.h | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/hw/hw.h b/hw/hw.h
index 0ed63c5..d801694 100644
--- a/hw/hw.h
+++ b/hw/hw.h
@@ -802,6 +802,12 @@ extern const VMStateDescription vmstate_usb_device;
#define VMSTATE_UINT32_ARRAY(_f, _s, _n) \
VMSTATE_UINT32_ARRAY_V(_f, _s, _n, 0)
+#define VMSTATE_INT64_ARRAY_V(_f, _s, _n, _v) \
+ VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int64, int64_t)
+
+#define VMSTATE_INT64_ARRAY(_f, _s, _n) \
+ VMSTATE_INT64_ARRAY_V(_f, _s, _n, 0)
+
#define VMSTATE_BUFFER_V(_f, _s, _v) \
VMSTATE_STATIC_BUFFER(_f, _s, _v, NULL, 0, sizeof(typeof_field(_s, _f)))
--
1.7.4
next prev parent reply other threads:[~2011-03-10 11:34 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-10 11:33 [Qemu-devel] [PATCH 0/9] VMState infrastructure Juan Quintela
2011-03-10 11:33 ` [Qemu-devel] [PATCH 1/9] vmstate: add VMSTATE_UINT32_EQUAL Juan Quintela
2011-03-10 11:33 ` [Qemu-devel] [PATCH 2/9] vmstate: Fix varrays with uint8 indexes Juan Quintela
2011-03-18 10:34 ` Yoshiaki Tamura
2011-03-18 12:04 ` [Qemu-devel] " Juan Quintela
2011-03-18 12:37 ` Yoshiaki Tamura
2011-03-22 6:23 ` Yoshiaki Tamura
2011-03-10 11:33 ` [Qemu-devel] [PATCH 3/9] vmstate: add UINT32 VARRAYS Juan Quintela
2011-03-10 11:33 ` [Qemu-devel] [PATCH 4/9] vmstate: add VMSTATE_STRUCT_VARRAY_INT32 Juan Quintela
2011-03-10 11:33 ` Juan Quintela [this message]
2011-03-10 11:33 ` [Qemu-devel] [PATCH 6/9] vmstate: add VMSTATE_STRUCT_VARRAY_UINT32 Juan Quintela
2011-03-10 11:33 ` [Qemu-devel] [PATCH 7/9] vmstate: Add a way to send a partial array Juan Quintela
2011-03-10 11:33 ` [Qemu-devel] [PATCH 8/9] vmstate: be able to store/save a pci device from a pointer Juan Quintela
2011-03-10 11:33 ` [Qemu-devel] [PATCH 9/9] vmstate: move timers to use test instead of version Juan Quintela
2011-03-10 13:56 ` [Qemu-devel] [PATCH 0/9] VMState infrastructure Anthony Liguori
2011-03-10 23:18 ` Anthony Liguori
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=bcd583cf40e4365da6010dc46031fd6098f80c86.1299756608.git.quintela@redhat.com \
--to=quintela@redhat.com \
--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).