qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] win32: fix broken build due to missing QEMU_MAD


From: Stefan Weil
Subject: Re: [Qemu-devel] [PATCH] win32: fix broken build due to missing QEMU_MADV_HUGEPAGE
Date: Thu, 25 Oct 2012 22:24:40 +0200
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.16) Gecko/20120922 Iceowl/1.0b1 Icedove/3.0.11

Am 24.10.2012 18:12, schrieb Luiz Capitulino:
Commit ad0b5321f1f797274603ebbe20108b0750baee94 forgot to add
QEMU_MADV_HUGEPAGE macros for when CONFIG_MADVISE is not defined.
This broke the build for Windows. Fix it.

Signed-off-by: Luiz Capitulino<address@hidden>
---
  osdep.h | 2 ++
  1 file changed, 2 insertions(+)

diff --git a/osdep.h b/osdep.h
index c5fd3d9..585e2c1 100644
--- a/osdep.h
+++ b/osdep.h
@@ -121,6 +121,7 @@ void qemu_vfree(void *ptr);
  #define QEMU_MADV_DONTFORK  QEMU_MADV_INVALID
  #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
  #define QEMU_MADV_DONTDUMP QEMU_MADV_INVALID
+#define QEMU_MADV_HUGEPAGE  QEMU_MADV_INVALID

  #else /* no-op */

@@ -129,6 +130,7 @@ void qemu_vfree(void *ptr);
  #define QEMU_MADV_DONTFORK  QEMU_MADV_INVALID
  #define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
  #define QEMU_MADV_DONTDUMP QEMU_MADV_INVALID
+#define QEMU_MADV_HUGEPAGE  QEMU_MADV_INVALID

  #endif

Reviewed-by: Stefan Weil <address@hidden>

This is a build fix for latest QEMU. Please apply it as soon as possible.

Regards
Stefan Weil




reply via email to

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