On 8 February 2013 04:03, Peter Crosthwaite <peter.crosthwa...@xilinx.com> wrote: > This field was write only and thus unused. Removed. > > Signed-off-by: Peter Crosthwaite <peter.crosthwa...@xilinx.com> > @@ -198,11 +194,10 @@ static int a9mp_priv_init(SysBusDevice *dev) > > static const VMStateDescription vmstate_a9mp_priv = { > .name = "a9mpcore_priv", > - .version_id = 2, > - .minimum_version_id = 1, > + .version_id = 3, > + .minimum_version_id = 2, > .fields = (VMStateField[]) { > VMSTATE_UINT32(scu_control, A9MPPrivState), > - VMSTATE_UINT32_ARRAY(old_timer_status, A9MPPrivState, 8), > VMSTATE_UINT32_V(scu_status, A9MPPrivState, 2), > VMSTATE_END_OF_LIST() > }
Does v2 to v3 migration really work (ie ignoring the v2-only field)? Since the previous patch broke migration for A9 platforms anyway you might as well set the minimum version ID to 3 and save me having to figure out the answer :-) -- PMM