mirror of https://gitee.com/openkylin/qemu.git
vmstate: add uint64 array support
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
3c619b5975
commit
80a04bbe90
6
hw/hw.h
6
hw/hw.h
|
@ -495,6 +495,12 @@ extern const VMStateDescription vmstate_pci_device;
|
||||||
#define VMSTATE_UINT32_ARRAY(_f, _s, _n) \
|
#define VMSTATE_UINT32_ARRAY(_f, _s, _n) \
|
||||||
VMSTATE_UINT32_ARRAY_V(_f, _s, _n, 0)
|
VMSTATE_UINT32_ARRAY_V(_f, _s, _n, 0)
|
||||||
|
|
||||||
|
#define VMSTATE_UINT64_ARRAY_V(_f, _s, _n, _v) \
|
||||||
|
VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint64, uint64_t)
|
||||||
|
|
||||||
|
#define VMSTATE_UINT64_ARRAY(_f, _s, _n) \
|
||||||
|
VMSTATE_UINT64_ARRAY_V(_f, _s, _n, 0)
|
||||||
|
|
||||||
#define VMSTATE_INT32_ARRAY_V(_f, _s, _n, _v) \
|
#define VMSTATE_INT32_ARRAY_V(_f, _s, _n, _v) \
|
||||||
VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int32, int32_t)
|
VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int32, int32_t)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue