Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1731823 > unrolled thread

[PATCH 5/7] kvm: Serialize wq active checks in kvm_vcpu_wake_up()

Started byDavidlohr Bueso <dave@stgolabs.net>
First post2017-09-13 22:10 +0200
Last post2017-09-13 22:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 5/7] kvm: Serialize wq active checks in kvm_vcpu_wake_up() Davidlohr Bueso <dave@stgolabs.net> - 2017-09-13 22:10 +0200

#1731823 — [PATCH 5/7] kvm: Serialize wq active checks in kvm_vcpu_wake_up()

FromDavidlohr Bueso <dave@stgolabs.net>
Date2017-09-13 22:10 +0200
Subject[PATCH 5/7] kvm: Serialize wq active checks in kvm_vcpu_wake_up()
Message-ID<upm8V-3w4-7@gated-at.bofh.it>
This is a generic call and can be suceptible to races
in reading the wq task_list while another task is adding
itself to the list. Add a full barrier by using the
swq_has_sleeper() helper.

Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
---
 virt/kvm/kvm_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
index 6ed1c2021198..c41d903c5783 100644
--- a/virt/kvm/kvm_main.c
+++ b/virt/kvm/kvm_main.c
@@ -2186,7 +2186,7 @@ bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
 	struct swait_queue_head *wqp;
 
 	wqp = kvm_arch_vcpu_wq(vcpu);
-	if (swait_active(wqp)) {
+	if (swq_has_sleeper(wqp)) {
 		swake_up(wqp);
 		++vcpu->stat.halt_wakeup;
 		return true;
-- 
2.12.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web