All of lore.kernel.org
 help / color / mirror / Atom feed
From: Aurelien Jarno <aurelien@aurel32.net>
To: Richard Henderson <rth@twiddle.net>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2 4/7] target: Include softmmu_exec.h where forgotten
Date: Fri, 30 Aug 2013 18:55:17 +0200	[thread overview]
Message-ID: <20130830165517.GA15648@ohm.aurel32.net> (raw)
In-Reply-To: <1377813961-12208-5-git-send-email-rth@twiddle.net>

On Thu, Aug 29, 2013 at 03:05:58PM -0700, Richard Henderson wrote:
> Several targets forgot to include softmmu_exec.h, which would
> break them with a header cleanup to follow.
> 
> Signed-off-by: Richard Henderson <rth@twiddle.net>
> ---
>  target-lm32/op_helper.c      | 2 ++
>  target-moxie/helper.c        | 1 +
>  target-ppc/mmu_helper.c      | 2 ++
>  target-unicore32/op_helper.c | 2 ++
>  target-xtensa/op_helper.c    | 1 +
>  5 files changed, 8 insertions(+)
> 
> diff --git a/target-lm32/op_helper.c b/target-lm32/op_helper.c
> index 2dab9f2..8f5ef55 100644
> --- a/target-lm32/op_helper.c
> +++ b/target-lm32/op_helper.c
> @@ -6,6 +6,8 @@
>  #include "hw/lm32/lm32_pic.h"
>  #include "hw/char/lm32_juart.h"
>  
> +#include "exec/softmmu_exec.h"
> +
>  #if !defined(CONFIG_USER_ONLY)
>  #define MMUSUFFIX _mmu
>  #define SHIFT 0
> diff --git a/target-moxie/helper.c b/target-moxie/helper.c
> index b12e4ff..7859102 100644
> --- a/target-moxie/helper.c
> +++ b/target-moxie/helper.c
> @@ -25,6 +25,7 @@
>  #include "cpu.h"
>  #include "mmu.h"
>  #include "exec/exec-all.h"
> +#include "exec/softmmu_exec.h"
>  #include "qemu/host-utils.h"
>  #include "helper.h"
>  
> diff --git a/target-ppc/mmu_helper.c b/target-ppc/mmu_helper.c
> index 5dd4e05..44f04e5 100644
> --- a/target-ppc/mmu_helper.c
> +++ b/target-ppc/mmu_helper.c
> @@ -2871,6 +2871,8 @@ void helper_booke206_tlbflush(CPUPPCState *env, uint32_t type)
>  
>  /*****************************************************************************/
>  
> +#include "exec/softmmu_exec.h"
> +
>  #define MMUSUFFIX _mmu
>  
>  #define SHIFT 0
> diff --git a/target-unicore32/op_helper.c b/target-unicore32/op_helper.c
> index 6443ffe..4f9f41e 100644
> --- a/target-unicore32/op_helper.c
> +++ b/target-unicore32/op_helper.c
> @@ -239,6 +239,8 @@ uint32_t HELPER(ror_cc)(CPUUniCore32State *env, uint32_t x, uint32_t i)
>  }
>  
>  #ifndef CONFIG_USER_ONLY
> +#include "exec/softmmu_exec.h"
> +
>  #define MMUSUFFIX _mmu
>  
>  #define SHIFT 0
> diff --git a/target-xtensa/op_helper.c b/target-xtensa/op_helper.c
> index 01123af..cf97025 100644
> --- a/target-xtensa/op_helper.c
> +++ b/target-xtensa/op_helper.c
> @@ -28,6 +28,7 @@
>  #include "cpu.h"
>  #include "helper.h"
>  #include "qemu/host-utils.h"
> +#include "exec/softmmu_exec.h"
>  
>  static void do_unaligned_access(CPUXtensaState *env,
>          target_ulong addr, int is_write, int is_user, uintptr_t retaddr);

Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

  reply	other threads:[~2013-08-30 16:55 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-29 22:05 [Qemu-devel] [PATCH v2 0/7] Further tcg ldst improvements Richard Henderson
2013-08-29 22:05 ` [Qemu-devel] [PATCH v2 1/7] exec: Reorganize the GETRA/GETPC macros Richard Henderson
2013-08-30 16:55   ` Aurelien Jarno
2013-08-29 22:05 ` [Qemu-devel] [PATCH v2 2/7] tcg-i386: Don't perform GETPC adjustment in TCG code Richard Henderson
2013-08-30 16:55   ` Aurelien Jarno
2013-08-29 22:05 ` [Qemu-devel] [PATCH v2 3/7] exec: Rename USUFFIX to LSUFFIX Richard Henderson
2013-08-30 16:55   ` Aurelien Jarno
2013-08-29 22:05 ` [Qemu-devel] [PATCH v2 4/7] target: Include softmmu_exec.h where forgotten Richard Henderson
2013-08-30 16:55   ` Aurelien Jarno [this message]
2013-08-29 22:05 ` [Qemu-devel] [PATCH v2 5/7] exec: Split softmmu_defs.h Richard Henderson
2013-08-30 16:55   ` Aurelien Jarno
2013-08-29 22:06 ` [Qemu-devel] [PATCH v2 6/7] tcg: Introduce zero and sign-extended versions of load helpers Richard Henderson
2013-08-30 16:55   ` Aurelien Jarno
2013-08-30 17:20     ` Richard Henderson
2013-08-30 19:12       ` Aurelien Jarno
2013-08-30 20:53         ` Richard Henderson
2013-08-30 21:23           ` Aurelien Jarno
2013-08-31  0:05             ` Richard Henderson
2013-08-29 22:06 ` [Qemu-devel] [PATCH v2 7/7] tcg-i386: Make use of zero-extended memory helper routines Richard Henderson
2013-08-30 21:23   ` Aurelien Jarno

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130830165517.GA15648@ohm.aurel32.net \
    --to=aurelien@aurel32.net \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.