[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCHv2 3/7] cuda.c: include adb_poll_timer in VMStateDescri
From: |
Mark Cave-Ayland |
Subject: |
[Qemu-ppc] [PATCHv2 3/7] cuda.c: include adb_poll_timer in VMStateDescription |
Date: |
Wed, 21 Jan 2015 16:01:08 +0000 |
Make sure that we include the adb_poll_timer when saving the VM state for
client OSs that use it, e.g. Darwin.
Signed-off-by: Mark Cave-Ayland <address@hidden>
---
hw/misc/macio/cuda.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c
index b4273aa..dd9d76a 100644
--- a/hw/misc/macio/cuda.c
+++ b/hw/misc/macio/cuda.c
@@ -638,8 +638,8 @@ static const VMStateDescription vmstate_cuda_timer = {
static const VMStateDescription vmstate_cuda = {
.name = "cuda",
- .version_id = 1,
- .minimum_version_id = 1,
+ .version_id = 2,
+ .minimum_version_id = 2,
.fields = (VMStateField[]) {
VMSTATE_UINT8(a, CUDAState),
VMSTATE_UINT8(b, CUDAState),
@@ -660,6 +660,7 @@ static const VMStateDescription vmstate_cuda = {
VMSTATE_UINT32(tick_offset, CUDAState),
VMSTATE_STRUCT_ARRAY(timers, CUDAState, 2, 1,
vmstate_cuda_timer, CUDATimer),
+ VMSTATE_TIMER(adb_poll_timer, CUDAState),
VMSTATE_END_OF_LIST()
}
};
--
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 <=
- [Qemu-ppc] [PATCHv2 7/7] openpic: fix up loadvm under -M mac99, Mark Cave-Ayland, 2015/01/21