All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] exec: Exclude non portable function for MinGW
@ 2014-01-14  6:00 ` Stefan Weil
  0 siblings, 0 replies; 8+ messages in thread
From: Stefan Weil @ 2014-01-14  6:00 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Stefan Weil

cpu_physical_memory_set_dirty_lebitmap calls getpageaddr and ffsl which are
unavailable for MinGW. As the function is unused for MinGW, it can simply
be excluded from compilation.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
 include/exec/ram_addr.h |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/exec/ram_addr.h b/include/exec/ram_addr.h
index 33c8acc..481a447 100644
--- a/include/exec/ram_addr.h
+++ b/include/exec/ram_addr.h
@@ -79,6 +79,7 @@ static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
     xen_modified_memory(start, length);
 }
 
+#if !defined(_WIN32)
 static inline void cpu_physical_memory_set_dirty_lebitmap(unsigned long *bitmap,
                                                           ram_addr_t start,
                                                           ram_addr_t pages)
@@ -127,6 +128,7 @@ static inline void cpu_physical_memory_set_dirty_lebitmap(unsigned long *bitmap,
         }
     }
 }
+#endif /* not _WIN32 */
 
 static inline void cpu_physical_memory_clear_dirty_range(ram_addr_t start,
                                                          ram_addr_t length,
-- 
1.7.10.4



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

end of thread, other threads:[~2014-01-14 21:06 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-14  6:00 [Qemu-trivial] [PATCH] exec: Exclude non portable function for MinGW Stefan Weil
2014-01-14  6:00 ` [Qemu-devel] " Stefan Weil
2014-01-14 17:26 ` [Qemu-trivial] " Michael Tokarev
2014-01-14 17:26   ` [Qemu-devel] " Michael Tokarev
2014-01-14 17:40   ` Stefan Weil
2014-01-14 17:40     ` [Qemu-devel] " Stefan Weil
2014-01-14 18:18     ` Juan Quintela
2014-01-14 18:18       ` [Qemu-devel] " Juan Quintela

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.