Re: [Qemu-devel] [PATCH] target-ppc: Fix h_enter to loop correctly

2014-03-19 Thread Paolo Bonzini
Il 14/03/2014 14:51, Aneesh Kumar K.V ha scritto: From: "Aneesh Kumar K.V" We wanted to loop till index is 8. On 8 we return with H_PTEG_FULL. If we are successful in loading hpte with any other index, we continue with that index value. Reported-by: Paolo Bonzini Signed-off-by: Aneesh Kumar K

Re: [Qemu-devel] [PATCH] target-ppc: Fix h_enter to loop correctly

2014-03-19 Thread Andreas Färber
Am 14.03.2014 14:51, schrieb Aneesh Kumar K.V: > From: "Aneesh Kumar K.V" > > We wanted to loop till index is 8. On 8 we return with H_PTEG_FULL. If we are > successful in loading hpte with any other index, we continue with that > index value. > > Reported-by: Paolo Bonzini > Signed-off-by: Ane

Re: [Qemu-devel] [PATCH] target-ppc: Fix h_enter to loop correctly

2014-03-19 Thread Aneesh Kumar K.V
Hi, I guess this should get into 2.0 ? "Aneesh Kumar K.V" writes: > From: "Aneesh Kumar K.V" > > We wanted to loop till index is 8. On 8 we return with H_PTEG_FULL. If we are > successful in loading hpte with any other index, we continue with that > index value. > > Reported-by: Paolo Bonzini

[Qemu-devel] [PATCH] target-ppc: Fix h_enter to loop correctly

2014-03-14 Thread Aneesh Kumar K.V
From: "Aneesh Kumar K.V" We wanted to loop till index is 8. On 8 we return with H_PTEG_FULL. If we are successful in loading hpte with any other index, we continue with that index value. Reported-by: Paolo Bonzini Signed-off-by: Aneesh Kumar K.V --- hw/ppc/spapr_hcall.c | 11 +-- 1 fi