On Tue, Apr 26, 2022 at 5:50 PM Richard Henderson
wrote:
>
> On 4/26/22 16:08, Atish Patra wrote:
> > +.num_offset = vmstate_offset_value(_state, _field_num, uint32_t),\
> ...
> > } else if (field->flags & VMS_VARRAY_UINT32) {
> > n_elems = *(uint32_t *)(opaque + field->num_off
On 4/26/22 16:08, Atish Patra wrote:
+.num_offset = vmstate_offset_value(_state, _field_num, uint32_t),\
...
} else if (field->flags & VMS_VARRAY_UINT32) {
n_elems = *(uint32_t *)(opaque + field->num_offset);
+} else if (field->flags & VMS_VARRAY_UINT64) {
+n_ele
unsigned 64bit variable array data type support is missing.
Add the required code to support it.
Signed-off-by: Atish Patra
---
include/migration/vmstate.h | 11 +++
migration/vmstate.c | 2 ++
2 files changed, 13 insertions(+)
diff --git a/include/migration/vmstate.h b/include