diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-20 19:42:37 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-27 20:30:22 -0500 |
commit | 0a031e0ac6218fa1b8478ebac3eddb912d2a236a (patch) | |
tree | 706bb52ef3b700bb618e98c7dad04d2214ed5efe /savevm.c | |
parent | b31442c31e0b7aaeebce5128700752997c8e495f (diff) | |
download | qemu-0a031e0ac6218fa1b8478ebac3eddb912d2a236a.tar.gz qemu-0a031e0ac6218fa1b8478ebac3eddb912d2a236a.tar.bz2 qemu-0a031e0ac6218fa1b8478ebac3eddb912d2a236a.zip |
Add VMState support for int32_t check value
We read the saved value and check that it is less or equal than the one
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
@@ -722,6 +722,26 @@ const VMStateInfo vmstate_info_int32_equal = { .put = put_int32, }; +/* 32 bit int. See that the received value is the less or the same + than the one in the field */ + +static int get_int32_le(QEMUFile *f, void *pv, size_t size) +{ + int32_t *old = pv; + int32_t new; + qemu_get_sbe32s(f, &new); + + if (*old <= new) + return 0; + return -EINVAL; +} + +const VMStateInfo vmstate_info_int32_le = { + .name = "int32 equal", + .get = get_int32_le, + .put = put_int32, +}; + /* 64 bit int */ static int get_int64(QEMUFile *f, void *pv, size_t size) |