On Mon, May 25, 2020 at 04:41:17PM +0200, Vitaly Kuznetsov wrote: > [..] > diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h > index 0a6b35353fc7..c195f63c1086 100644 > --- a/arch/x86/include/asm/kvm_host.h > +++ b/arch/x86/include/asm/kvm_host.h > @@ -767,7 +767,7 @@ struct kvm_vcpu_arch { > u64 msr_val; > u32 id; > bool send_user_only; > - u32 host_apf_reason; > + u32 host_apf_flags; Hi Vitaly, What is host_apf_reason used for. Looks like it is somehow used in context of nested guests. I hope by now you have been able to figure it out. Is it somehow the case of that L2 guest takes a page fault exit and then L0 injects this event in L1 using exception. I have been trying to read this code but can't wrap my head around it. I am still concerned about the case of nested kvm. We have discussed apf mechanism but never touched nested part of it. Given we are touching code in nested kvm part, want to make sure it is not broken in new design. Thanks Vivek