Re: [Qemu-devel] [PATCH 4/6] savevm: Add VMSTATE_STRUCT_VARRAY_POINTER_UINT32

2013-03-14 Thread David Gibson
On Thu, Mar 14, 2013 at 01:40:37PM +0100, Juan Quintela wrote: > David Gibson wrote: > > Currently the savevm code contains a VMSTATE_STRUCT_VARRAY_POINTER_INT32 > > helper (a variably sized array with the number of elements in an int32_t), > > but not VMSTATE_STRUCT_VARRAY_POINTER_UINT32 (... wit

Re: [Qemu-devel] [PATCH 4/6] savevm: Add VMSTATE_STRUCT_VARRAY_POINTER_UINT32

2013-03-14 Thread Juan Quintela
David Gibson wrote: > Currently the savevm code contains a VMSTATE_STRUCT_VARRAY_POINTER_INT32 > helper (a variably sized array with the number of elements in an int32_t), > but not VMSTATE_STRUCT_VARRAY_POINTER_UINT32 (... with the number of > elements in a uint32_t). This patch (trivially) fixe

[Qemu-devel] [PATCH 4/6] savevm: Add VMSTATE_STRUCT_VARRAY_POINTER_UINT32

2013-03-11 Thread David Gibson
Currently the savevm code contains a VMSTATE_STRUCT_VARRAY_POINTER_INT32 helper (a variably sized array with the number of elements in an int32_t), but not VMSTATE_STRUCT_VARRAY_POINTER_UINT32 (... with the number of elements in a uint32_t). This patch (trivially) fixes the deficiency. Signed-off