> 
> Signed-off-by: Liu Yu <[email protected]>
> ---
>  arch/powerpc/kvm/e500_tlb.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/powerpc/kvm/e500_tlb.c b/arch/powerpc/kvm/e500_tlb.c
> index 72386dd..4d6ecbd 100644
> --- a/arch/powerpc/kvm/e500_tlb.c
> +++ b/arch/powerpc/kvm/e500_tlb.c
> @@ -448,7 +448,7 @@ int kvmppc_e500_emul_tlbre(struct kvm_vcpu *vcpu)
>       esel = get_tlb_esel(vcpu_e500, tlbsel);
>  
>       gtlbe = &vcpu_e500->guest_tlb[tlbsel][esel];
> -     vcpu_e500->mas0 &= MAS0_NV(0);
> +     vcpu_e500->mas0 &= ~MAS0_NV(0);

Oops...
This should be 
vcpu_e500->mas0 &= ~MAS0_NV(~0);

--
To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to