From: Stafford Horne <shorne@gmail.com>
To: peter.maydell@linaro.org
Cc: QEMU Development <qemu-devel@nongnu.org>,
Stafford Horne <shorne@gmail.com>
Subject: [Qemu-devel] [PULL 08/11] migration: Add VMSTATE_STRUCT_2DARRAY()
Date: Mon, 1 May 2017 08:14:22 +0900 [thread overview]
Message-ID: <565b9678ec7335762a290afce68f7062bdaf0ce9.1493593744.git.shorne@gmail.com> (raw)
In-Reply-To: <cover.1493593744.git.shorne@gmail.com>
In-Reply-To: <cover.1493593744.git.shorne@gmail.com>
For openrisc we implement tlb state as a 2d array of tlb entry structs.
This is added to allow easy storing of state of 2d arrays.
Signed-off-by: Stafford Horne <shorne@gmail.com>
---
include/migration/vmstate.h | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h
index f2dbf84..9b7dcdc 100644
--- a/include/migration/vmstate.h
+++ b/include/migration/vmstate.h
@@ -499,6 +499,17 @@ extern const VMStateInfo vmstate_info_qtailq;
.offset = vmstate_offset_array(_state, _field, _type, _num),\
}
+#define VMSTATE_STRUCT_2DARRAY_TEST(_field, _state, _n1, _n2, _test, _version, _vmsd, _type) { \
+ .name = (stringify(_field)), \
+ .num = (_n1) * (_n2), \
+ .field_exists = (_test), \
+ .version_id = (_version), \
+ .vmsd = &(_vmsd), \
+ .size = sizeof(_type), \
+ .flags = VMS_STRUCT|VMS_ARRAY, \
+ .offset = vmstate_offset_2darray(_state, _field, _type, _n1, _n2),\
+}
+
#define VMSTATE_STRUCT_VARRAY_UINT8(_field, _state, _field_num, _version, _vmsd, _type) { \
.name = (stringify(_field)), \
.num_offset = vmstate_offset_value(_state, _field_num, uint8_t), \
@@ -746,6 +757,10 @@ extern const VMStateInfo vmstate_info_qtailq;
VMSTATE_STRUCT_ARRAY_TEST(_field, _state, _num, NULL, _version, \
_vmsd, _type)
+#define VMSTATE_STRUCT_2DARRAY(_field, _state, _n1, _n2, _version, _vmsd, _type) \
+ VMSTATE_STRUCT_2DARRAY_TEST(_field, _state, _n1, _n2, NULL, _version, \
+ _vmsd, _type)
+
#define VMSTATE_BUFFER_UNSAFE_INFO(_field, _state, _version, _info, _size) \
VMSTATE_BUFFER_UNSAFE_INFO_TEST(_field, _state, NULL, _version, _info, \
_size)
--
2.9.3
next prev parent reply other threads:[~2017-04-30 23:15 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-30 23:14 [Qemu-devel] [PULL 00/11] Fixes and features for OpenRISC Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 01/11] MAINTAINERS: Add myself as openrisc maintainer Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 02/11] target/openrisc: Implement EVBAR register Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 03/11] target/openrisc: Implement EPH bit Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 04/11] target/openrisc: Fixes for memory debugging Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 05/11] target/openrisc: add numcores and coreid support Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 06/11] migration: Add VMSTATE_UINTTL_2DARRAY() Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 07/11] target/openrisc: implement shadow registers Stafford Horne
2017-04-30 23:14 ` Stafford Horne [this message]
2017-04-30 23:14 ` [Qemu-devel] [PULL 09/11] target/openrisc: Implement full vmstate serialization Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 10/11] target/openrisc: Remove duplicate features property Stafford Horne
2017-04-30 23:14 ` [Qemu-devel] [PULL 11/11] target/openrisc: Support non-busy idle state using PMR SPR Stafford Horne
2017-05-01 0:06 ` [Qemu-devel] [PULL 00/11] Fixes and features for OpenRISC no-reply
2017-05-02 14:20 ` Stefan Hajnoczi
2017-05-02 15:05 ` Stafford Horne
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=565b9678ec7335762a290afce68f7062bdaf0ce9.1493593744.git.shorne@gmail.com \
--to=shorne@gmail.com \
--cc=peter.maydell@linaro.org \
--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).