[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 1/4] mos6522: fix vmstate_mos6522_timer version in vms
From: |
Mark Cave-Ayland |
Subject: |
[Qemu-ppc] [PATCH 1/4] mos6522: fix vmstate_mos6522_timer version in vmstate_mos6522 |
Date: |
Thu, 7 Jun 2018 18:17:48 +0100 |
This was accidentally introduced when extracting the 6522 VIA functionality
from the CUDA device, and prevents loadvm from completing successfully.
Signed-off-by: Mark Cave-Ayland <address@hidden>
---
hw/misc/mos6522.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/misc/mos6522.c b/hw/misc/mos6522.c
index 6163cea6ab..dd56c796e4 100644
--- a/hw/misc/mos6522.c
+++ b/hw/misc/mos6522.c
@@ -405,7 +405,7 @@ static const VMStateDescription vmstate_mos6522 = {
VMSTATE_UINT8(ifr, MOS6522State),
VMSTATE_UINT8(ier, MOS6522State),
VMSTATE_UINT8(anh, MOS6522State),
- VMSTATE_STRUCT_ARRAY(timers, MOS6522State, 2, 1,
+ VMSTATE_STRUCT_ARRAY(timers, MOS6522State, 2, 0,
vmstate_mos6522_timer, MOS6522Timer),
VMSTATE_END_OF_LIST()
}
--
2.11.0
- [Qemu-ppc] [PATCH 0/4] cuda/mos6522 migration fixes, Mark Cave-Ayland, 2018/06/07
- [Qemu-ppc] [PATCH 1/4] mos6522: fix vmstate_mos6522_timer version in vmstate_mos6522,
Mark Cave-Ayland <=
- [Qemu-ppc] [PATCH 2/4] cuda: embed mos6522_cuda device directly rather than using QOM object link, Mark Cave-Ayland, 2018/06/07
- [Qemu-ppc] [PATCH 3/4] mos6522: move timer frequency initialisation to mos6522_reset, Mark Cave-Ayland, 2018/06/07
- [Qemu-ppc] [PATCH 4/4] mos6522: convert VMSTATE_TIMER_PTR_TEST to VMSTATE_TIMER_PTR, Mark Cave-Ayland, 2018/06/07
- Re: [Qemu-ppc] [Qemu-devel] [PATCH 0/4] cuda/mos6522 migration fixes, Philippe Mathieu-Daudé, 2018/06/07
- Re: [Qemu-ppc] [PATCH 0/4] cuda/mos6522 migration fixes, David Gibson, 2018/06/07