qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH V2 3/3] vl.c: Check the asked ram_size later.


From: Alexander Graf
Subject: Re: [Qemu-devel] [PATCH V2 3/3] vl.c: Check the asked ram_size later.
Date: Wed, 27 Jul 2011 14:53:16 +0200
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.14) Gecko/20110221 SUSE/3.1.8 Thunderbird/3.1.8

On 07/20/2011 08:17 PM, Anthony PERARD wrote:
As a Xen guest can have more than 2GB of RAM on a 32bit host, we move
the conditions after than we now if we run one Xen or not.

Signed-off-by: Anthony PERARD<address@hidden>
---
  vl.c |   14 ++++++++------
  1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/vl.c b/vl.c
index fcd7395..c2efedf 100644
--- a/vl.c
+++ b/vl.c
@@ -2433,11 +2433,6 @@ int main(int argc, char **argv, char **envp)
                      exit(1);
                  }

-                /* On 32-bit hosts, QEMU is limited by virtual address space */
-                if (value>  (2047<<  20)&&  HOST_LONG_BITS == 32) {
-                    fprintf(stderr, "qemu: at most 2047 MB RAM can be 
simulated\n");
-                    exit(1);
-                }
                  if (value != (uint64_t)(ram_addr_t)value) {
                      fprintf(stderr, "qemu: ram size too large\n");
                      exit(1);
@@ -3091,8 +3086,15 @@ int main(int argc, char **argv, char **envp)
          exit(1);

      /* init the memory */
-    if (ram_size == 0)
+    if (ram_size == 0) {
          ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
+    } else if (!xen_enabled()) {

I don't see why those are mutually exclusive.

+        /* On 32-bit hosts, QEMU is limited by virtual address space */
+        if (ram_size>  (2047<<  20)&&  HOST_LONG_BITS == 32) {
+            fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
+            exit(1);
+        }
+    }

      /* init the dynamic translator */
      cpu_exec_init_all(tb_size * 1024 * 1024);

Alex




reply via email to

[Prev in Thread] Current Thread [Next in Thread]