aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCorey Minyard <cminyard@mvista.com>2018-11-26 12:54:45 -0600
committerCorey Minyard <cminyard@mvista.com>2019-02-27 21:06:08 -0600
commit8e995f34031d66666b45b779458cb370e86cfe2d (patch)
tree57ca6e81bd9418e2117982dcce7af3bdff548938 /include
parent52cc6a492b6c6e668f99e13d3cfad5caf7fbfd1c (diff)
downloadqemu-8e995f34031d66666b45b779458cb370e86cfe2d.zip
qemu-8e995f34031d66666b45b779458cb370e86cfe2d.tar.gz
qemu-8e995f34031d66666b45b779458cb370e86cfe2d.tar.bz2
migration: Add a VMSTATE_BOOL_TEST() macro
This will be needed by coming I2C changes. Signed-off-by: Corey Minyard <cminyard@mvista.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/migration/vmstate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h
index 067b126..a668ec7 100644
--- a/include/migration/vmstate.h
+++ b/include/migration/vmstate.h
@@ -851,6 +851,9 @@ extern const VMStateInfo vmstate_info_qtailq;
#define VMSTATE_INT32_POSITIVE_LE(_f, _s) \
VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_le, int32_t)
+#define VMSTATE_BOOL_TEST(_f, _s, _t) \
+ VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_bool, bool)
+
#define VMSTATE_INT8_TEST(_f, _s, _t) \
VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_info_int8, int8_t)