All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] KVM: VMX: optimize pi_wakeup_handler
@ 2022-04-02  4:01 Li RongQing
  2022-04-02  8:14 ` Paolo Bonzini
  0 siblings, 1 reply; 5+ messages in thread
From: Li RongQing @ 2022-04-02  4:01 UTC (permalink / raw)
  To: kvm, pbonzini, seanjc, vkuznets

pi_wakeup_handler is used to wakeup the sleep vCPUs by posted irq
list_for_each_entry is used in it, and whose input is other function
per_cpu(), That cause that per_cpu() be invoked at least twice when
there is one sleep vCPU

so optimize pi_wakeup_handler it by reading once which is safe in
spinlock protection

and same to per CPU spinlock

Signed-off-by: Li RongQing <lirongqing@baidu.com>
---
 arch/x86/kvm/vmx/posted_intr.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kvm/vmx/posted_intr.c b/arch/x86/kvm/vmx/posted_intr.c
index 5fdabf3..0dae431 100644
--- a/arch/x86/kvm/vmx/posted_intr.c
+++ b/arch/x86/kvm/vmx/posted_intr.c
@@ -214,17 +214,21 @@ void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
  */
 void pi_wakeup_handler(void)
 {
+	struct list_head *wakeup_list;
 	int cpu = smp_processor_id();
+	raw_spinlock_t *spinlock;
 	struct vcpu_vmx *vmx;
 
-	raw_spin_lock(&per_cpu(wakeup_vcpus_on_cpu_lock, cpu));
-	list_for_each_entry(vmx, &per_cpu(wakeup_vcpus_on_cpu, cpu),
-			    pi_wakeup_list) {
+	spinlock = &per_cpu(wakeup_vcpus_on_cpu_lock, cpu);
+
+	raw_spin_lock(spinlock);
+	wakeup_list = &per_cpu(wakeup_vcpus_on_cpu, cpu);
+	list_for_each_entry(vmx, wakeup_list, pi_wakeup_list) {
 
 		if (pi_test_on(&vmx->pi_desc))
 			kvm_vcpu_wake_up(&vmx->vcpu);
 	}
-	raw_spin_unlock(&per_cpu(wakeup_vcpus_on_cpu_lock, cpu));
+	raw_spin_unlock(spinlock);
 }
 
 void __init pi_init_cpu(int cpu)
-- 
2.9.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-04-05  8:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-02  4:01 [PATCH] KVM: VMX: optimize pi_wakeup_handler Li RongQing
2022-04-02  8:14 ` Paolo Bonzini
2022-04-02  8:32   ` 答复: " Li,Rongqing
2022-04-04 15:15     ` Sean Christopherson
2022-04-05  8:26       ` 答复: " Li,Rongqing

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.