]> Git Repo - qemu.git/commitdiff
Fix kqemu build failure.
authorPaul Brook <[email protected]>
Wed, 13 May 2009 17:08:17 +0000 (18:08 +0100)
committerPaul Brook <[email protected]>
Wed, 13 May 2009 17:08:17 +0000 (18:08 +0100)
Signed-off-by: Paul Brook <[email protected]>
vl.c

diff --git a/vl.c b/vl.c
index bb6f7d619d1ea9fd45631ae79a8ff16f51da64f4..b43cdd164239043a515048deeee136a4cc1e7fa2 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -5735,7 +5735,7 @@ int main(int argc, char **argv, char **envp)
     /* FIXME: This is a nasty hack because kqemu can't cope with dynamic
        guest ram allocation.  It needs to go away.  */
     if (kqemu_allowed) {
-        kqemu_phys_ram_size = ram_size + VGA_RAM_SIZE + 4 * 1024 * 1024;
+        kqemu_phys_ram_size = ram_size + 8 * 1024 * 1024 + 4 * 1024 * 1024;
         kqemu_phys_ram_base = qemu_vmalloc(kqemu_phys_ram_size);
         if (!kqemu_phys_ram_base) {
             fprintf(stderr, "Could not allocate physical memory\n");
This page took 0.030175 seconds and 4 git commands to generate.