[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] Save/load PC speaker internal state
From: |
Pavel Dovgaluk |
Subject: |
Re: [Qemu-devel] [PATCH] Save/load PC speaker internal state |
Date: |
Tue, 28 Aug 2012 11:01:15 +0400 |
> -----Original Message-----
> From: Peter Maydell [mailto:address@hidden
> Sent: Monday, August 27, 2012 4:50 PM
> To: Pavel Dovgaluk
> Cc: qemu-devel
> Subject: Re: [Qemu-devel] [PATCH] Save/load PC speaker internal state
>
> On 27 August 2012 13:21, Pavel Dovgaluk <address@hidden> wrote:
> > Save PC speaker state to remove differences between system
> > states after saving the snapshot and after loading it again.
> > This patch is needed for deterministic replay of the execution.
> >
> > Signed-off-by: Pavel Dovgalyuk<address@hidden>
>
> Hi Pavel; thanks for this patch. Couple of minor issues:
>
> > +static const VMStateDescription vmstate_spk = {
> > + .name = "pcspk",
> > + .version_id = 1,
> > + .minimum_version_id = 1,
> > + .minimum_version_id_old = 1,
> > + .fields = (VMStateField[]) {
> > + VMSTATE_UINT8_ARRAY(sample_buf, PCSpkState, PCSPK_BUF_LEN),
> > + VMSTATE_UINT32(pit_count, PCSpkState),
> > + VMSTATE_UINT32(samples, PCSpkState),
> > + VMSTATE_UINT32(play_pos, PCSpkState),
> > + VMSTATE_INT32(data_on, PCSpkState),
> > + VMSTATE_INT32(dummy_refresh_clock, PCSpkState),
>
> I think that you need also to update the types in the PCSpkState
> struct from int/unsigned int to int32_t/uint32_t, otherwise this
> won't compile on a 64 bit system.
Peter, Jan, thank you for the reviews. I've sent new version of the patch.
Pavel Dovgaluk