Kevin Hao <haokexin <at> gmail.com> writes:

> 
> We use the wrong number arguments when invoking trace_kvm_stlb_inval,
> and cause the following build error.
> arch/powerpc/kvm/e500_tlb.c: In function 'kvmppc_e500_stlbe_invalidate':
> arch/powerpc/kvm/e500_tlb.c:230: error: too many arguments to 
function 'trace_kvm_stlb_inval'
> 
> Signed-off-by: Kevin Hao <haokexin <at> gmail.com>
> ---
>  arch/powerpc/kvm/e500_tlb.c |    3 +--
>  1 files changed, 1 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/powerpc/kvm/e500_tlb.c b/arch/powerpc/kvm/e500_tlb.c
> index 21011e1..1261a21 100644
> --- a/arch/powerpc/kvm/e500_tlb.c
> +++ b/arch/powerpc/kvm/e500_tlb.c
>  <at>  <at>  -226,8 +226,7  <at>  <at>  static void 
kvmppc_e500_stlbe_invalidate(struct kvmppc_vcpu_e500 *vcpu_e500,
> 
>       kvmppc_e500_shadow_release(vcpu_e500, tlbsel, esel);
>       stlbe->mas1 = 0;
> -     trace_kvm_stlb_inval(index_of(tlbsel, esel), stlbe->mas1, 
stlbe->mas2,
> -                          stlbe->mas3, stlbe->mas7);
> +     trace_kvm_stlb_inval(index_of(tlbsel, esel));
>  }
> 
>  static void kvmppc_e500_tlb1_invalidate(struct kvmppc_vcpu_e500 
*vcpu_e500,




it worked was able to build image after this change, I have one query how 
to check on PowerPC that KVM is enabled, or VT is enabled, any cli 
available to check this data. please share it.

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

Reply via email to