[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 3/4] ppc: add CPU access_type into the migration strea
From: |
Mark Cave-Ayland |
Subject: |
[Qemu-ppc] [PATCH 3/4] ppc: add CPU access_type into the migration stream |
Date: |
Sun, 10 Sep 2017 15:37:34 +0100 |
This is referenced in cpu_ppc_handle_mmu_fault() and so should be included
in the migration stream.
Note: the vmstate_ppc version number has already been bumped by the previous
patch in this series.
Signed-off-by: Mark Cave-Ayland <address@hidden>
---
target/ppc/machine.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/ppc/machine.c b/target/ppc/machine.c
index 8fec1a4..10b3c41 100644
--- a/target/ppc/machine.c
+++ b/target/ppc/machine.c
@@ -676,7 +676,7 @@ const VMStateDescription vmstate_ppc_cpu = {
/* Internal state */
VMSTATE_UINTTL(env.hflags_nmsr, PowerPCCPU),
- /* FIXME: access_type? */
+ VMSTATE_UINT8_V(env.access_type, PowerPCCPU, 6),
/* Interrupt state */
VMSTATE_UINT32_V(env.pending_interrupts, PowerPCCPU, 6),
--
1.7.10.4
- [Qemu-ppc] [PATCH 4/4] ppc: ensure we update the decrementer value during migration, (continued)
- [Qemu-ppc] [PATCH 4/4] ppc: ensure we update the decrementer value during migration, Mark Cave-Ayland, 2017/09/10
- Re: [Qemu-ppc] [PATCH 4/4] ppc: ensure we update the decrementer value during migration, David Gibson, 2017/09/13
- Re: [Qemu-ppc] [Qemu-devel] [PATCH 4/4] ppc: ensure we update the decrementer value during migration, Mark Cave-Ayland, 2017/09/13
- Re: [Qemu-ppc] [Qemu-devel] [PATCH 4/4] ppc: ensure we update the decrementer value during migration, Laurent Vivier, 2017/09/13
- Re: [Qemu-ppc] [Qemu-devel] [PATCH 4/4] ppc: ensure we update the decrementer value during migration, David Gibson, 2017/09/13
- Re: [Qemu-ppc] [Qemu-devel] [PATCH 4/4] ppc: ensure we update the decrementer value during migration, Mark Cave-Ayland, 2017/09/15
- Re: [Qemu-ppc] [Qemu-devel] [PATCH 4/4] ppc: ensure we update the decrementer value during migration, David Gibson, 2017/09/19
[Qemu-ppc] [PATCH 1/4] ppc: change CPUPPCState access_type from int to uint8_t, Mark Cave-Ayland, 2017/09/10
[Qemu-ppc] [PATCH 3/4] ppc: add CPU access_type into the migration stream,
Mark Cave-Ayland <=