On Fri, 14 Mar 2014 15:18:08 +1100 Alexey Kardashevskiy <a...@ozlabs.ru> wrote:
> This removes @next_irq from sPAPREnvironment which was used in old > IRQ allocator as XICS is now responsible for IRQs and keep track of > allocated IRQs. > > Signed-off-by: Alexey Kardashevskiy <a...@ozlabs.ru> > --- > hw/ppc/spapr.c | 3 --- > include/hw/ppc/spapr.h | 1 - > 2 files changed, 4 deletions(-) > > diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c > index 29ca2e0..1f7162c 100644 > --- a/hw/ppc/spapr.c > +++ b/hw/ppc/spapr.c > @@ -732,8 +732,6 @@ static const VMStateDescription vmstate_spapr = { > .minimum_version_id = 1, > .minimum_version_id_old = 1, > .fields = (VMStateField []) { > - VMSTATE_UINT32(next_irq, sPAPREnvironment), > - You're changing the layout of a state description here... maybe it would be a good idea to increase the version_id (and minimum_version_id) in that case? Thomas