diff mbox

memory: Pass a target address to walk_memory_regions_1() not a page index.

Message ID 1390839401-20042-1-git-send-email-huw@codeweavers.com
State New
Headers show

Commit Message

Huw Davies Jan. 27, 2014, 4:16 p.m. UTC
Signed-off-by: Huw Davies <huw@codeweavers.com>
---
 translate-all.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/translate-all.c b/translate-all.c
index 105c25a..e7ed09c 100644
--- a/translate-all.c
+++ b/translate-all.c
@@ -1641,7 +1641,8 @@  int walk_memory_regions(void *priv, walk_memory_regions_fn fn)
     data.prot = 0;
 
     for (i = 0; i < V_L1_SIZE; i++) {
-        int rc = walk_memory_regions_1(&data, (abi_ulong)i << V_L1_SHIFT,
+        int rc = walk_memory_regions_1(&data,
+                                       (abi_ulong)i << (V_L1_SHIFT + TARGET_PAGE_BITS),
                                        V_L1_SHIFT / V_L2_BITS - 1, l1_map + i);
 
         if (rc != 0) {