Re: [PATCH 05/28] KVM: nSVM: correctly inject INIT vmexits

2020-05-29 Thread Paolo Bonzini
On 29/05/20 08:46, Krish Sadhukhan wrote: >> >> +static void nested_svm_init(struct vcpu_svm *svm) > > Should this be named nested_svm_inject_init_vmexit in accordance with > nested_svm_inject_exception_vmexit that you did in patch# 3 ? There's also nested_svm_intr and nested_svm_nmi. I'll renam

Re: [PATCH 05/28] KVM: nSVM: correctly inject INIT vmexits

2020-05-28 Thread Krish Sadhukhan
On 5/26/20 10:22 AM, Paolo Bonzini wrote: The usual drill at this point, except there is no code to remove because this case was not handled at all. Signed-off-by: Paolo Bonzini --- arch/x86/kvm/svm/nested.c | 27 +++ 1 file changed, 27 insertions(+) diff --git a/a

[PATCH 05/28] KVM: nSVM: correctly inject INIT vmexits

2020-05-26 Thread Paolo Bonzini
The usual drill at this point, except there is no code to remove because this case was not handled at all. Signed-off-by: Paolo Bonzini --- arch/x86/kvm/svm/nested.c | 27 +++ 1 file changed, 27 insertions(+) diff --git a/arch/x86/kvm/svm/nested.c b/arch/x86/kvm/svm/nest