qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2] bsd-user: fix compile failure


From: Stefan Weil
Subject: Re: [Qemu-devel] [PATCH v2] bsd-user: fix compile failure
Date: Thu, 12 Apr 2012 18:35:26 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.28) Gecko/20120313 Thunderbird/3.1.20

Am 12.04.2012 13:43, schrieb Peter Maydell:
bsd-user doesn't actually support reserving a memory area for the
guest address space, but we need to at least define the reserved_va
global so that cpu-all.h's RESERVED_VA macro will work correctly.

This fixes a compilation error introduced in commit 39879bb
which added a use of RESERVED_VA to h2g_valid().

Reported-by: Brad Smith<address@hidden>
Signed-off-by: Peter Maydell<address@hidden>
---
v1->v2 changes: added commit hash accidentally omitted from message
added reported-by line. no code change.

  bsd-user/main.c |    1 +
  1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/bsd-user/main.c b/bsd-user/main.c
index 48cb715..0689e38 100644
--- a/bsd-user/main.c
+++ b/bsd-user/main.c
@@ -41,6 +41,7 @@ int singlestep;
  unsigned long mmap_min_addr;
  unsigned long guest_base;
  int have_guest_base;
+unsigned long reserved_va;
  #endif

  static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;

Reviewed-by: Stefan Weil <address@hidden>

I'll send a patch which changes the data type to uintptr_t later
with my w64 patches.




reply via email to

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