mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
vmstate: Fix varrays with uint8 indexes
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
9122a8fed7
commit
82fa39b751
2 changed files with 5 additions and 2 deletions
5
hw/hw.h
5
hw/hw.h
|
@ -298,6 +298,7 @@ enum VMStateFlags {
|
|||
VMS_VARRAY_UINT16 = 0x080, /* Array with size in uint16_t field */
|
||||
VMS_VBUFFER = 0x100, /* Buffer with size in int32_t field */
|
||||
VMS_MULTIPLY = 0x200, /* multiply "size" field by field_size */
|
||||
VMS_VARRAY_UINT8 = 0x400, /* Array with size in uint8_t field*/
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
|
@ -489,11 +490,11 @@ extern const VMStateInfo vmstate_info_unused_buffer;
|
|||
|
||||
#define VMSTATE_STRUCT_VARRAY_UINT8(_field, _state, _field_num, _version, _vmsd, _type) { \
|
||||
.name = (stringify(_field)), \
|
||||
.num_offset = vmstate_offset_value(_state, _field_num, uint8_t), \
|
||||
.num_offset = vmstate_offset_value(_state, _field_num, uint8_t), \
|
||||
.version_id = (_version), \
|
||||
.vmsd = &(_vmsd), \
|
||||
.size = sizeof(_type), \
|
||||
.flags = VMS_STRUCT|VMS_VARRAY_INT32, \
|
||||
.flags = VMS_STRUCT|VMS_VARRAY_UINT8, \
|
||||
.offset = offsetof(_state, _field), \
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue