summaryrefslogtreecommitdiffstats
path: root/hw/intc/arm_gicv3_common.c
diff options
context:
space:
mode:
authorPeter Maydell2018-08-06 14:34:42 +0200
committerPeter Maydell2018-08-06 17:19:33 +0200
commitadc4fda6d564a9a7e3fff4bdafcee131fdac133a (patch)
tree4d98b35e04d324b7416f6172d371ee76a0991c7e /hw/intc/arm_gicv3_common.c
parenthw/intc/arm_gicv3_common: Give no-migration-shift-bug subsection a needed fun... (diff)
downloadqemu-adc4fda6d564a9a7e3fff4bdafcee131fdac133a.tar.gz
qemu-adc4fda6d564a9a7e3fff4bdafcee131fdac133a.tar.xz
qemu-adc4fda6d564a9a7e3fff4bdafcee131fdac133a.zip
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 <peter.maydell@linaro.org> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20180806123445.1459-3-peter.maydell@linaro.org
Diffstat (limited to 'hw/intc/arm_gicv3_common.c')
-rw-r--r--hw/intc/arm_gicv3_common.c3
1 files changed, 0 insertions, 3 deletions
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
}