summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2010-02-28 23:55:53 +0000
committerPaul Brook <paul@codesourcery.com>2010-02-28 23:55:53 +0000
commit6d9a13042d3dab92418fb67e8d63126033fb11a6 (patch)
treea167ba6bd5f51fa7da5ade75c58de851779f75e7 /exec.c
parent94df27fd2f008ce9f259b72945e02dcad6e98d82 (diff)
downloadqemu-6d9a13042d3dab92418fb67e8d63126033fb11a6.tar.gz
Remove l1_phys_map from userspace emulation
Userspace emulation doesn't have a physical address space, so l1_phys_map makes no sense. This code is never actually used, so don't try and build it. Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/exec.c b/exec.c
index 52f33f0648..914d4e8ddb 100644
--- a/exec.c
+++ b/exec.c
@@ -179,9 +179,10 @@ unsigned long qemu_host_page_mask;
/* XXX: for system emulation, it could just be an array */
static PageDesc *l1_map[L1_SIZE];
-static PhysPageDesc **l1_phys_map;
#if !defined(CONFIG_USER_ONLY)
+static PhysPageDesc **l1_phys_map;
+
static void io_mem_init(void);
/* io memory support */
@@ -264,8 +265,10 @@ static void page_init(void)
while ((1 << qemu_host_page_bits) < qemu_host_page_size)
qemu_host_page_bits++;
qemu_host_page_mask = ~(qemu_host_page_size - 1);
+#if !defined(CONFIG_USER_ONLY)
l1_phys_map = qemu_vmalloc(L1_SIZE * sizeof(void *));
memset(l1_phys_map, 0, L1_SIZE * sizeof(void *));
+#endif
#if !defined(_WIN32) && defined(CONFIG_USER_ONLY)
{
@@ -351,6 +354,7 @@ static inline PageDesc *page_find(target_ulong index)
return p + (index & (L2_SIZE - 1));
}
+#if !defined(CONFIG_USER_ONLY)
static PhysPageDesc *phys_page_find_alloc(target_phys_addr_t index, int alloc)
{
void **lp, **p;
@@ -395,7 +399,6 @@ static inline PhysPageDesc *phys_page_find(target_phys_addr_t index)
return phys_page_find_alloc(index, 0);
}
-#if !defined(CONFIG_USER_ONLY)
static void tlb_protect_code(ram_addr_t ram_addr);
static void tlb_unprotect_code_phys(CPUState *env, ram_addr_t ram_addr,
target_ulong vaddr);