qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] linux-user: Fix compilation failure
@ 2013-06-27 19:53 Peter Maydell
  2013-06-27 20:03 ` Michael R. Hines
  2013-07-01 13:14 ` Anthony Liguori
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Maydell @ 2013-06-27 19:53 UTC (permalink / raw)
  To: qemu-devel; +Cc: Anthony Liguori, Juan Quintela, Michael R. Hines, patches

Fix compilation failures for linux-user targets following recent
migration related commits bd2fa51fcd and 43487c67.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
Longer term we should probably try to disentangle migration
from user-mode emulators a bit better (eg hw.h should probably
not pull in any of the migration headers if CONFIG_USER_ONLY);
this is a minimal patch which fixes the compilation failures.

 exec.c                      |    2 +-
 include/hw/hw.h             |    1 -
 include/migration/vmstate.h |    2 ++
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/exec.c b/exec.c
index 2e6fc00..f99041b 100644
--- a/exec.c
+++ b/exec.c
@@ -2629,7 +2629,6 @@ bool cpu_physical_memory_is_io(hwaddr phys_addr)
     return !(memory_region_is_ram(mr) ||
              memory_region_is_romd(mr));
 }
-#endif
 
 void qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque)
 {
@@ -2639,3 +2638,4 @@ void qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque)
         func(block->host, block->offset, block->length, opaque);
     }
 }
+#endif
diff --git a/include/hw/hw.h b/include/hw/hw.h
index cc9f847..33bdb92 100644
--- a/include/hw/hw.h
+++ b/include/hw/hw.h
@@ -11,7 +11,6 @@
 #include "exec/ioport.h"
 #include "hw/irq.h"
 #include "block/aio.h"
-#include "migration/qemu-file.h"
 #include "migration/vmstate.h"
 #include "qemu/log.h"
 
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h
index ebc4d09..1c31b5d 100644
--- a/include/migration/vmstate.h
+++ b/include/migration/vmstate.h
@@ -26,7 +26,9 @@
 #ifndef QEMU_VMSTATE_H
 #define QEMU_VMSTATE_H 1
 
+#ifndef CONFIG_USER_ONLY
 #include <migration/qemu-file.h>
+#endif
 
 typedef void SaveStateHandler(QEMUFile *f, void *opaque);
 typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id);
-- 
1.7.9.5

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

* Re: [Qemu-devel] [PATCH] linux-user: Fix compilation failure
  2013-06-27 19:53 [Qemu-devel] [PATCH] linux-user: Fix compilation failure Peter Maydell
@ 2013-06-27 20:03 ` Michael R. Hines
  2013-07-01 13:14 ` Anthony Liguori
  1 sibling, 0 replies; 3+ messages in thread
From: Michael R. Hines @ 2013-06-27 20:03 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Anthony Liguori, patches, Michael R. Hines, qemu-devel,
	Juan Quintela

On 06/27/2013 03:53 PM, Peter Maydell wrote:
> Fix compilation failures for linux-user targets following recent
> migration related commits bd2fa51fcd and 43487c67.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> Longer term we should probably try to disentangle migration
> from user-mode emulators a bit better (eg hw.h should probably
> not pull in any of the migration headers if CONFIG_USER_ONLY);
> this is a minimal patch which fixes the compilation failures.
>
>   exec.c                      |    2 +-
>   include/hw/hw.h             |    1 -
>   include/migration/vmstate.h |    2 ++
>   3 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/exec.c b/exec.c
> index 2e6fc00..f99041b 100644
> --- a/exec.c
> +++ b/exec.c
> @@ -2629,7 +2629,6 @@ bool cpu_physical_memory_is_io(hwaddr phys_addr)
>       return !(memory_region_is_ram(mr) ||
>                memory_region_is_romd(mr));
>   }
> -#endif
>
>   void qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque)
>   {
> @@ -2639,3 +2638,4 @@ void qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque)
>           func(block->host, block->offset, block->length, opaque);
>       }
>   }
> +#endif
> diff --git a/include/hw/hw.h b/include/hw/hw.h
> index cc9f847..33bdb92 100644
> --- a/include/hw/hw.h
> +++ b/include/hw/hw.h
> @@ -11,7 +11,6 @@
>   #include "exec/ioport.h"
>   #include "hw/irq.h"
>   #include "block/aio.h"
> -#include "migration/qemu-file.h"
>   #include "migration/vmstate.h"
>   #include "qemu/log.h"
>
> diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h
> index ebc4d09..1c31b5d 100644
> --- a/include/migration/vmstate.h
> +++ b/include/migration/vmstate.h
> @@ -26,7 +26,9 @@
>   #ifndef QEMU_VMSTATE_H
>   #define QEMU_VMSTATE_H 1
>
> +#ifndef CONFIG_USER_ONLY
>   #include <migration/qemu-file.h>
> +#endif
>
>   typedef void SaveStateHandler(QEMUFile *f, void *opaque);
>   typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id);

Thanks for the quick patch =)

- Michael

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

* Re: [Qemu-devel] [PATCH] linux-user: Fix compilation failure
  2013-06-27 19:53 [Qemu-devel] [PATCH] linux-user: Fix compilation failure Peter Maydell
  2013-06-27 20:03 ` Michael R. Hines
@ 2013-07-01 13:14 ` Anthony Liguori
  1 sibling, 0 replies; 3+ messages in thread
From: Anthony Liguori @ 2013-07-01 13:14 UTC (permalink / raw)
  To: Peter Maydell, qemu-devel
  Cc: Anthony Liguori, patches, Michael R. Hines, Juan Quintela

Applied.  Thanks.

Regards,

Anthony Liguori

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

end of thread, other threads:[~2013-07-01 13:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-27 19:53 [Qemu-devel] [PATCH] linux-user: Fix compilation failure Peter Maydell
2013-06-27 20:03 ` Michael R. Hines
2013-07-01 13:14 ` Anthony Liguori

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