qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5979] Fix compiling without MREMAP_FIXED
@ 2008-12-11 19:12 Blue Swirl
  2008-12-11 19:33 ` Kirill A. Shutemov
  0 siblings, 1 reply; 7+ messages in thread
From: Blue Swirl @ 2008-12-11 19:12 UTC (permalink / raw)
  To: qemu-devel

Revision: 5979
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5979
Author:   blueswir1
Date:     2008-12-11 19:12:25 +0000 (Thu, 11 Dec 2008)

Log Message:
-----------
Fix compiling without MREMAP_FIXED

Modified Paths:
--------------
    trunk/linux-user/mmap.c

Modified: trunk/linux-user/mmap.c
===================================================================
--- trunk/linux-user/mmap.c	2008-12-11 17:30:50 UTC (rev 5978)
+++ trunk/linux-user/mmap.c	2008-12-11 19:12:25 UTC (rev 5979)
@@ -546,6 +546,7 @@
 
     mmap_lock();
 
+#if defined(MREMAP_FIXED)
     if (flags & MREMAP_FIXED)
         host_addr = mremap(g2h(old_addr), old_size, new_size,
                            flags, new_addr);
@@ -560,7 +561,9 @@
         } else
             host_addr = mremap(g2h(old_addr), old_size, new_size,
                                flags | MREMAP_FIXED, g2h(mmap_start));
-    } else {
+    } else
+#endif
+    {
         host_addr = mremap(g2h(old_addr), old_size, new_size, flags);
         /* Check if address fits target address space */
         if ((unsigned long)host_addr + new_size > (abi_ulong)-1) {

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-12-15 18:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-11 19:12 [Qemu-devel] [5979] Fix compiling without MREMAP_FIXED Blue Swirl
2008-12-11 19:33 ` Kirill A. Shutemov
2008-12-12 13:37   ` Kirill A. Shutemov
2008-12-12 16:27   ` Blue Swirl
2008-12-12 19:11     ` Kirill A. Shutemov
2008-12-14 17:43       ` Kirill A. Shutemov
2008-12-15 18:06         ` Blue Swirl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).