On Mon, 2024-12-09 at 09:07 +0800, Binbin Wu wrote: > diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c > index 474e0a7c1069..f93c382344ee 100644 > --- a/arch/x86/kvm/lapic.c > +++ b/arch/x86/kvm/lapic.c > @@ -3365,7 +3365,7 @@ int kvm_apic_accept_events(struct kvm_vcpu *vcpu) > > if (test_and_clear_bit(KVM_APIC_INIT, &apic->pending_events)) { > kvm_vcpu_reset(vcpu, true); > - if (kvm_vcpu_is_bsp(apic->vcpu)) > + if (kvm_vcpu_is_bsp(vcpu)) > vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; > else > vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED; This part seems not related. If it needs to be done, should it be done in a separate patch?