From: David Gibson <david@gibson.dropbear.id.au>
To: "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com>
Cc: qemu-devel@nongnu.org, amit.shah@redhat.com, quintela@redhat.com,
duanj@linux.vnet.ibm.com, pasic@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [very-WIP 2/7] tests/migration: Add test for VMSTATE_WITH_TMP
Date: Mon, 17 Oct 2016 14:34:20 +1100 [thread overview]
Message-ID: <20161017033420.GN25390@umbus.fritz.box> (raw)
In-Reply-To: <20161011171833.20803-3-dgilbert@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 5978 bytes --]
On Tue, Oct 11, 2016 at 06:18:31PM +0100, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
>
> Add a test for VMSTATE_WITH_TMP to tests/test-vmstate.c
>
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Looks reasonable. The other obvious use case to me - which involves a
little less awkwardness with command line supplied values - is
changing an internal value to an equivalent-but-scaled representation.
e.g. changing from size (in bytes, but must be page aligned), to
number of pages.
> ---
> tests/test-vmstate.c | 97 +++++++++++++++++++++++++++++++++++++++++++++++++---
> 1 file changed, 93 insertions(+), 4 deletions(-)
>
> diff --git a/tests/test-vmstate.c b/tests/test-vmstate.c
> index d8da26f..203ab4a 100644
> --- a/tests/test-vmstate.c
> +++ b/tests/test-vmstate.c
> @@ -83,7 +83,7 @@ static void save_vmstate(const VMStateDescription *desc, void *obj)
> qemu_fclose(f);
> }
>
> -static void compare_vmstate(uint8_t *wire, size_t size)
> +static void compare_vmstate(const uint8_t *wire, size_t size)
> {
> QEMUFile *f = open_test_file(false);
> uint8_t result[size];
> @@ -106,7 +106,7 @@ static void compare_vmstate(uint8_t *wire, size_t size)
> }
>
> static int load_vmstate_one(const VMStateDescription *desc, void *obj,
> - int version, uint8_t *wire, size_t size)
> + int version, const uint8_t *wire, size_t size)
> {
> QEMUFile *f;
> int ret;
> @@ -130,7 +130,7 @@ static int load_vmstate_one(const VMStateDescription *desc, void *obj,
> static int load_vmstate(const VMStateDescription *desc,
> void *obj, void *obj_clone,
> void (*obj_copy)(void *, void*),
> - int version, uint8_t *wire, size_t size)
> + int version, const uint8_t *wire, size_t size)
> {
> /* We test with zero size */
> obj_copy(obj_clone, obj);
> @@ -282,7 +282,6 @@ static void test_simple_primitive(void)
> FIELD_EQUAL(i64_1);
> FIELD_EQUAL(i64_2);
> }
> -#undef FIELD_EQUAL
>
> typedef struct TestStruct {
> uint32_t a, b, c, e;
> @@ -475,6 +474,95 @@ static void test_load_skip(void)
> qemu_fclose(loading);
> }
>
> +typedef struct TmpTestStruct {
> + TestStruct *parent;
> + int64_t diff;
> +} TmpTestStruct;
> +
> +static void tmp_child_pre_save(void *opaque)
> +{
> + struct TmpTestStruct *tts = opaque;
> +
> + tts->diff = tts->parent->b - tts->parent->a;
> +}
> +
> +static int tmp_child_post_load(void *opaque, int version_id)
> +{
> + struct TmpTestStruct *tts = opaque;
> +
> + tts->parent->b = tts->parent->a + tts->diff;
> +
> + return 0;
> +}
> +
> +static const VMStateDescription vmstate_tmp_back_to_parent = {
> + .name = "test/tmp_child_parent",
> + .fields = (VMStateField[]) {
> + VMSTATE_UINT64(f, TestStruct),
> + VMSTATE_END_OF_LIST()
> + }
> +};
> +
> +static const VMStateDescription vmstate_tmp_child = {
> + .name = "test/tmp_child",
> + .pre_save = tmp_child_pre_save,
> + .post_load = tmp_child_post_load,
> + .fields = (VMStateField[]) {
> + VMSTATE_INT64(diff, TmpTestStruct),
> + VMSTATE_STRUCT_POINTER(parent, TmpTestStruct,
> + vmstate_tmp_back_to_parent, TestStruct),
> + VMSTATE_END_OF_LIST()
> + }
> +};
> +
> +static const VMStateDescription vmstate_with_tmp = {
> + .name = "test/with_tmp",
> + .version_id = 1,
> + .fields = (VMStateField[]) {
> + VMSTATE_UINT32(a, TestStruct),
> + VMSTATE_UINT64(d, TestStruct),
> + VMSTATE_WITH_TMP(TestStruct, TmpTestStruct, vmstate_tmp_child),
> + VMSTATE_END_OF_LIST()
> + }
> +};
> +
> +static void obj_tmp_copy(void *target, void *source)
> +{
> + memcpy(target, source, sizeof(TestStruct));
> +}
> +
> +static void test_tmp_struct(void)
> +{
> + TestStruct obj, obj_clone;
> +
> + uint8_t const wire_with_tmp[] = {
> + /* u32 a */ 0x00, 0x00, 0x00, 0x02,
> + /* u64 d */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
> + /* diff */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02,
> + /* u64 f */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08,
> + QEMU_VM_EOF, /* just to ensure we won't get EOF reported prematurely */
> + };
> +
> + memset(&obj, 0, sizeof(obj));
> + obj.a = 2;
> + obj.b = 4;
> + obj.d = 1;
> + obj.f = 8;
> + save_vmstate(&vmstate_with_tmp, &obj);
> +
> + compare_vmstate(wire_with_tmp, sizeof(wire_with_tmp));
> +
> + memset(&obj, 0, sizeof(obj));
> + fprintf(stderr, "test_tmp_struct load\n");
> + SUCCESS(load_vmstate(&vmstate_with_tmp, &obj, &obj_clone,
> + obj_tmp_copy, 1, wire_with_tmp,
> + sizeof(wire_with_tmp)));
> + g_assert_cmpint(obj.a, ==, 2); /* From top level vmsd */
> + g_assert_cmpint(obj.b, ==, 4); /* from the post_load */
> + g_assert_cmpint(obj.d, ==, 1); /* From top level vmsd */
> + g_assert_cmpint(obj.f, ==, 8); /* From the child->parent */
> +}
> +
> int main(int argc, char **argv)
> {
> temp_fd = mkstemp(temp_file);
> @@ -489,6 +577,7 @@ int main(int argc, char **argv)
> g_test_add_func("/vmstate/field_exists/load/skip", test_load_skip);
> g_test_add_func("/vmstate/field_exists/save/noskip", test_save_noskip);
> g_test_add_func("/vmstate/field_exists/save/skip", test_save_skip);
> + g_test_add_func("/vmstate/tmp_struct", test_tmp_struct);
> g_test_run();
>
> close(temp_fd);
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2016-10-17 3:37 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-11 17:18 [Qemu-devel] [very-WIP 0/4] Migration: VMSTATE_WITH_TMP Dr. David Alan Gilbert (git)
2016-10-11 17:18 ` [Qemu-devel] [very-WIP 1/7] migration: Add VMSTATE_WITH_TMP Dr. David Alan Gilbert (git)
2016-10-17 3:31 ` David Gibson
2016-10-17 18:49 ` Jianjun Duan
2016-10-17 18:52 ` Dr. David Alan Gilbert
2016-10-17 19:02 ` Jianjun Duan
2016-10-17 19:16 ` Dr. David Alan Gilbert
2016-10-17 19:30 ` Jianjun Duan
2016-10-18 8:06 ` Dr. David Alan Gilbert
2016-10-11 17:18 ` [Qemu-devel] [very-WIP 2/7] tests/migration: Add test for VMSTATE_WITH_TMP Dr. David Alan Gilbert (git)
2016-10-17 3:34 ` David Gibson [this message]
2016-10-11 17:18 ` [Qemu-devel] [very-WIP 3/4] slirp: VMStatify sbuf Dr. David Alan Gilbert (git)
2016-10-17 3:36 ` David Gibson
2016-10-17 17:54 ` Halil Pasic
2016-10-17 19:06 ` Dr. David Alan Gilbert
2016-10-18 10:40 ` Halil Pasic
2016-10-11 17:18 ` [Qemu-devel] [very-WIP 4/4] virtio/migration: Migrate virtio-net to VMState Dr. David Alan Gilbert (git)
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=20161017033420.GN25390@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=amit.shah@redhat.com \
--cc=dgilbert@redhat.com \
--cc=duanj@linux.vnet.ibm.com \
--cc=pasic@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.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).