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<lcapitul...@redhat.com>
---
  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 <s...@weilnetz.de>

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

Regards
Stefan Weil


Reply via email to