[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCHv2 7/7] openpic: fix up loadvm under -M mac99
From: |
Mark Cave-Ayland |
Subject: |
[Qemu-ppc] [PATCHv2 7/7] openpic: fix up loadvm under -M mac99 |
Date: |
Wed, 21 Jan 2015 16:01:12 +0000 |
Issuing loadvm under -M mac99 would fail for two reasons: firstly an incorrect
version number for openpic would cause openpic_load() to abort, and secondly
a cut/paste error when restoring the IVPR and IDR registers caused subsequent
vmstate sections to become misaligned and abort early.
Signed-off-by: Mark Cave-Ayland <address@hidden>
---
hw/intc/openpic.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/hw/intc/openpic.c b/hw/intc/openpic.c
index 8699a4a..4194cef 100644
--- a/hw/intc/openpic.c
+++ b/hw/intc/openpic.c
@@ -1366,7 +1366,7 @@ static int openpic_load(QEMUFile* f, void *opaque, int
version_id)
OpenPICState *opp = (OpenPICState *)opaque;
unsigned int i, nb_cpus;
- if (version_id != 1) {
+ if (version_id != 2) {
return -EINVAL;
}
@@ -1399,12 +1399,10 @@ static int openpic_load(QEMUFile* f, void *opaque, int
version_id)
uint32_t val;
val = qemu_get_be32(f);
- write_IRQreg_idr(opp, i, val);
- val = qemu_get_be32(f);
write_IRQreg_ivpr(opp, i, val);
+ val = qemu_get_be32(f);
+ write_IRQreg_idr(opp, i, val);
- qemu_get_be32s(f, &opp->src[i].ivpr);
- qemu_get_be32s(f, &opp->src[i].idr);
qemu_get_be32s(f, &opp->src[i].destmask);
qemu_get_sbe32s(f, &opp->src[i].last_cpu);
qemu_get_sbe32s(f, &opp->src[i].pending);
--
1.7.10.4
- [Qemu-ppc] [PATCHv2 0/7] ppc: loadvm/savevm fixups for -M g3beige and -M mac99, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 1/7] macio.c: include parent PCIDevice state in VMStateDescription, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 4/7] target-ppc: move sdr1 value change detection logic to helper_store_sdr1(), Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 6/7] openpic: fix segfault on -M mac99 savevm, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 2/7] adb.c: include ADBDevice parent state in KBDState and MouseState, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 3/7] cuda.c: include adb_poll_timer in VMStateDescription, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 7/7] openpic: fix up loadvm under -M mac99,
Mark Cave-Ayland <=