On Thu, 23 Aug 2012 15:42:49 +0800
Gavin Shan <sha...@linux.vnet.ibm.com> wrote:

> The build error was caused by that builtin functions are calling
> the functions implemented in modules. That was introduced by the
> following commit.
> 
> commit 4d8b81abc47b83a1939e59df2fdb0e98dfe0eedd
> 
> The patches fix that to convert the gfn to hva in direct way.

Not just that...

> 
> Signed-off-by: Gavin Shan <sha...@linux.vnet.ibm.com>
> ---
> diff --git a/arch/powerpc/kvm/book3s_hv_rm_mmu.c 
> b/arch/powerpc/kvm/book3s_hv_rm_mmu.c
> index 56ac1a5..0958523 100644
> --- a/arch/powerpc/kvm/book3s_hv_rm_mmu.c
> +++ b/arch/powerpc/kvm/book3s_hv_rm_mmu.c
> @@ -197,7 +197,8 @@ long kvmppc_h_enter(struct kvm_vcpu *vcpu, unsigned long 
> flags,
>               pa &= PAGE_MASK;
>       } else {
>               /* Translate to host virtual address */
> -             hva = gfn_to_hva_memslot(memslot, gfn);
> +             hva = memslot->userspace_addr +
> +                     (gfn - memslot->base_gfn) * PAGE_SIZE;

Although I do not think what that commit wanted to do was wrong,
I believe the gfn_to_hva_memslot() change should have been
explained more explicitely, at least, to all users of
the not-anymore-inline function.

Probably kvm-ppc people should re-check the call sites: what they
want to use may be newly introduced __gfn_to_hva_memslot() which
is equivalent to the original gfn_to_hva_memslot().

Thanks,
        Takuya
--
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