[Qemu-devel] [PATCH 1/6] savevm: Add VMSTATE_UINT64_EQUAL helpers

2013-03-11 Thread David Gibson
The savevm code already includes a number of *_EQUAL helpers which act as sanity checks verifying that the configuration of the saved state matches that of the machine we're loading into to work. Variants already exist for 8 bit 16 bit and 32 bit integers, but not 64 bit integers. This patch fill

Re: [Qemu-devel] [PATCH 1/6] savevm: Add VMSTATE_UINT64_EQUAL helpers

2012-10-01 Thread David Gibson
On Sat, Sep 29, 2012 at 11:36:35AM +, Blue Swirl wrote: > On Wed, Sep 26, 2012 at 3:21 AM, David Gibson > wrote: > > The savevm code already includes a number of *_EQUAL helpers which act as > > sanity checks verifying that the configuration of the saved state matches > > that of the machine w

Re: [Qemu-devel] [PATCH 1/6] savevm: Add VMSTATE_UINT64_EQUAL helpers

2012-09-29 Thread Blue Swirl
On Wed, Sep 26, 2012 at 3:21 AM, David Gibson wrote: > The savevm code already includes a number of *_EQUAL helpers which act as > sanity checks verifying that the configuration of the saved state matches > that of the machine we're loading into to work. Variants already exist > for 8 bit 16 bit

[Qemu-devel] [PATCH 1/6] savevm: Add VMSTATE_UINT64_EQUAL helpers

2012-09-25 Thread David Gibson
The savevm code already includes a number of *_EQUAL helpers which act as sanity checks verifying that the configuration of the saved state matches that of the machine we're loading into to work. Variants already exist for 8 bit 16 bit and 32 bit integers, but not 64 bit integers. This patch fill