diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-20 19:42:32 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-27 20:30:21 -0500 |
commit | 8250166039211e5753f070951b85982705fa0f56 (patch) | |
tree | 0693dc839b10ab5c0dc723f8f4075fd9f89b0ce6 /savevm.c | |
parent | 5122b431c6d1b489e3f615002f7785fea80b776a (diff) |
Add VMState support for int32_t check value
We read the saved value and check that it is the same that the one
is stored in the structure.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'savevm.c')
-rw-r--r-- | savevm.c | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -702,6 +702,26 @@ const VMStateInfo vmstate_info_int32 = { .put = put_int32, }; +/* 32 bit int. See that the received value is the same than the one + in the field */ + +static int get_int32_equal(QEMUFile *f, void *pv, size_t size) +{ + int32_t *v = pv; + int32_t v2; + qemu_get_sbe32s(f, &v2); + + if (*v == v2) + return 0; + return -EINVAL; +} + +const VMStateInfo vmstate_info_int32_equal = { + .name = "int32 equal", + .get = get_int32_equal, + .put = put_int32, +}; + /* 64 bit int */ static int get_int64(QEMUFile *f, void *pv, size_t size) |