From: Peter Maydell Date: Mon, 6 Aug 2018 12:34:42 +0000 (+0100) Subject: hw/intc/arm_gicv3_common: Combine duplicate .subsections in vmstate_gicv3_cpu X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=adc4fda6d564a9a7e3fff4bdafcee131fdac133a;p=qmiga%2Fqemu.git hw/intc/arm_gicv3_common: Combine duplicate .subsections in vmstate_gicv3_cpu Commit 6692aac411199064 accidentally introduced a second initialization of the .subsections field of vmstate_gicv3_cpu, instead of adding the new subsection to the existing list. The effect of this was probably that migration of GICv3 with virtualization enabled was broken (or alternatively that migration of ICC_SRE_EL1 was broken, depending on which of the two initializers the compiler used). Combine the two into a single list. Signed-off-by: Peter Maydell Reviewed-by: Dr. David Alan Gilbert Reviewed-by: Richard Henderson Message-id: 20180806123445.1459-3-peter.maydell@linaro.org --- diff --git a/hw/intc/arm_gicv3_common.c b/hw/intc/arm_gicv3_common.c index e58bc8b810..e1a8999cf5 100644 --- a/hw/intc/arm_gicv3_common.c +++ b/hw/intc/arm_gicv3_common.c @@ -134,9 +134,6 @@ static const VMStateDescription vmstate_gicv3_cpu = { }, .subsections = (const VMStateDescription * []) { &vmstate_gicv3_cpu_virt, - NULL - }, - .subsections = (const VMStateDescription * []) { &vmstate_gicv3_cpu_sre_el1, NULL }