qemu-trivial.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] bsd-user: fix compile failure
@ 2012-04-12 10:22 Peter Maydell
  2012-04-12 10:38 ` [Qemu-trivial] [Qemu-devel] " Andreas Färber
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Maydell @ 2012-04-12 10:22 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Brad Smith, patches

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
which added a use of RESERVED_VA to h2g_valid().

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 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;
-- 
1.7.1



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

end of thread, other threads:[~2012-04-12 11:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-12 10:22 [Qemu-trivial] [PATCH] bsd-user: fix compile failure Peter Maydell
2012-04-12 10:38 ` [Qemu-trivial] [Qemu-devel] " Andreas Färber

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).