qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] target-sh4: fix TLB invalidation code


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] target-sh4: fix TLB invalidation code
Date: Tue, 25 Jan 2011 09:03:35 +0100
User-agent: Mutt/1.5.18 (2008-05-17)

On Tue, Jan 25, 2011 at 03:32:01PM +0900, Alexandre Courbot wrote:
> In cpu_sh4_invalidate_tlb, the UTLB was invalidated twice and the
> ITLB left unchaged, probably because of some unfortunate copy/paste.
> 
> Signed-off-by: Alexandre Courbot <address@hidden>
> ---
>  target-sh4/helper.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/target-sh4/helper.c b/target-sh4/helper.c
> index c34d2f5..aec4d75 100644
> --- a/target-sh4/helper.c
> +++ b/target-sh4/helper.c
> @@ -562,8 +562,8 @@ void cpu_load_tlb(CPUSH4State * env)
>          entry->v = 0;
>      }
>      /* ITLB */
> -    for (i = 0; i < UTLB_SIZE; i++) {
> -        tlb_t * entry = &s->utlb[i];
> +    for (i = 0; i < ITLB_SIZE; i++) {
> +        tlb_t * entry = &s->itlb[i];
>          entry->v = 0;
>      }
>  

Thanks applied.


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



reply via email to

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