summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnthony PERARD <anthony.perard@citrix.com>2011-07-15 04:32:53 +0000
committerAlexander Graf <agraf@suse.de>2011-07-26 06:43:10 +0200
commit8ca5692df4a635b2c9211d6dc3dea15bd2b674c8 (patch)
treecddad9c16a4c482434c3b5161969b8e5a97e17ee
parent30ab61252b71446977e298f146be124eb4a5b333 (diff)
downloadfocaccia-qemu-8ca5692df4a635b2c9211d6dc3dea15bd2b674c8.tar.gz
focaccia-qemu-8ca5692df4a635b2c9211d6dc3dea15bd2b674c8.zip
exec.c: Use ram_addr_t in cpu_physical_memory_rw(...).
As the variable pd and addr1 inside the function cpu_physical_memory_rw
are mean to handle a RAM address, they should be of the ram_addr_t type
instead of unsigned long.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r--exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/exec.c b/exec.c
index 2160ded401..0393d39998 100644
--- a/exec.c
+++ b/exec.c
@@ -3858,7 +3858,7 @@ void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf,
     uint8_t *ptr;
     uint32_t val;
     target_phys_addr_t page;
-    unsigned long pd;
+    ram_addr_t pd;
     PhysPageDesc *p;
 
     while (len > 0) {
@@ -3898,7 +3898,7 @@ void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf,
                     l = 1;
                 }
             } else {
-                unsigned long addr1;
+                ram_addr_t addr1;
                 addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK);
                 /* RAM case */
                 ptr = qemu_get_ram_ptr(addr1);