summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Gibson2012-10-29 18:24:58 +0100
committerAlexander Graf2012-11-01 13:02:22 +0100
commitac7d12ba256b7c9d4e122d0d6877e2312d6c19ed (patch)
tree8c98aca9c5dc9073a8ccc28fd68b515465c4f7ba
parentRevert "PPC: pseries: Remove hack for PIO window" (diff)
downloadqemu-ac7d12ba256b7c9d4e122d0d6877e2312d6c19ed.tar.gz
qemu-ac7d12ba256b7c9d4e122d0d6877e2312d6c19ed.tar.xz
qemu-ac7d12ba256b7c9d4e122d0d6877e2312d6c19ed.zip
target-ppc: Rework storage of VPA registration state
We change the storage of the VPA information to explicitly use fixed size integer types which will make life easier for syncing this data with KVM, which we will need in future. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> [agraf: fix commit message] Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r--target-ppc/cpu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h
index 286f42a808..e603d9f936 100644
--- a/target-ppc/cpu.h
+++ b/target-ppc/cpu.h
@@ -1045,9 +1045,9 @@ struct CPUPPCState {
#endif
#if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
- hwaddr vpa_addr;
- hwaddr slb_shadow_addr, slb_shadow_size;
- hwaddr dtl_addr, dtl_size;
+ uint64_t vpa_addr;
+ uint64_t slb_shadow_addr, slb_shadow_size;
+ uint64_t dtl_addr, dtl_size;
#endif /* TARGET_PPC64 */
int error_code;