qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [5104] Fix a nit in exec.c, by Tristan Gingold.


From: Thiemo Seufer
Subject: [Qemu-devel] [5104] Fix a nit in exec.c, by Tristan Gingold.
Date: Fri, 29 Aug 2008 13:10:00 +0000

Revision: 5104
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5104
Author:   ths
Date:     2008-08-29 13:10:00 +0000 (Fri, 29 Aug 2008)

Log Message:
-----------
Fix a nit in exec.c, by Tristan Gingold.

Modified Paths:
--------------
    trunk/exec.c

Modified: trunk/exec.c
===================================================================
--- trunk/exec.c        2008-08-29 10:05:12 UTC (rev 5103)
+++ trunk/exec.c        2008-08-29 13:10:00 UTC (rev 5104)
@@ -286,7 +286,7 @@
 #if TARGET_LONG_BITS > 32
     /* Host memory outside guest VM.  For 32-bit targets we have already
        excluded high addresses.  */
-    if (index > ((target_ulong)L2_SIZE * L1_SIZE * TARGET_PAGE_SIZE))
+    if (index > ((target_ulong)L2_SIZE * L1_SIZE))
         return NULL;
 #endif
     lp = &l1_map[index >> L2_BITS];






reply via email to

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