qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [CFT PATCH 02/12] cris, microblaze: use cpu_has_work


From: Edgar E. Iglesias
Subject: Re: [Qemu-devel] [CFT PATCH 02/12] cris, microblaze: use cpu_has_work
Date: Tue, 8 Feb 2011 20:42:57 +0100
User-agent: Mutt/1.5.20 (2009-06-14)

On Tue, Feb 08, 2011 at 06:18:19PM +0100, Paolo Bonzini wrote:
> Signed-off-by: Paolo Bonzini <address@hidden>

Thanks, I've applied this one.

Cheers



> ---
>  target-cris/exec.h       |    4 +---
>  target-microblaze/exec.h |    4 +---
>  2 files changed, 2 insertions(+), 6 deletions(-)
> 
> diff --git a/target-cris/exec.h b/target-cris/exec.h
> index 93ce768..34c0132 100644
> --- a/target-cris/exec.h
> +++ b/target-cris/exec.h
> @@ -37,9 +37,7 @@ static inline int cpu_halted(CPUState *env) {
>       if (!env->halted)
>               return 0;
>  
> -     /* IRQ, NMI and GURU execeptions wakes us up.  */
> -     if (env->interrupt_request
> -         & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI)) {
> +     if (cpu_has_work(env)) {
>               env->halted = 0;
>               return 0;
>       }
> diff --git a/target-microblaze/exec.h b/target-microblaze/exec.h
> index 87b2494..ab19828 100644
> --- a/target-microblaze/exec.h
> +++ b/target-microblaze/exec.h
> @@ -36,9 +36,7 @@ static inline int cpu_halted(CPUState *env) {
>       if (!env->halted)
>               return 0;
>  
> -     /* IRQ, NMI and GURU execeptions wakes us up.  */
> -     if (env->interrupt_request
> -         & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI)) {
> +     if (cpu_has_work(env)) {
>               env->halted = 0;
>               return 0;
>       }
> -- 
> 1.7.3.5
> 
> 
> 



reply via email to

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