Revision a0cff57bb2a41cb9cbf13d3203097b4156d8c0ae authored by Davidlohr Bueso on 13 September 2017, 20:08:21 UTC, committed by Paolo Bonzini on 15 September 2017, 14:57:12 UTC
During code inspection, the following potential race was seen:

CPU0   	    		    	     	CPU1
kvm_async_pf_task_wait			apf_task_wake_one
					  [L] swait_active(&n->wq)
  [S] prepare_to_swait(&n.wq)
  [L] if (!hlist_unhahed(&n.link))
	schedule()			  [S] hlist_del_init(&n->link);

Properly serialize swait_active() checks such that a wakeup is
not missed.

Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
1 parent cc1b468
History
File Mode Size
Kconfig -rw-r--r-- 5.4 KB
Makefile -rw-r--r-- 847 bytes
arm-cci.c -rw-r--r-- 63.1 KB
arm-ccn.c -rw-r--r-- 46.3 KB
brcmstb_gisb.c -rw-r--r-- 11.4 KB
da8xx-mstpri.c -rw-r--r-- 6.1 KB
imx-weim.c -rw-r--r-- 5.1 KB
mips_cdmm.c -rw-r--r-- 19.1 KB
mvebu-mbus.c -rw-r--r-- 36.4 KB
omap-ocp2scp.c -rw-r--r-- 3.4 KB
omap_l3_noc.c -rw-r--r-- 10.5 KB
omap_l3_noc.h -rw-r--r-- 12.3 KB
omap_l3_smx.c -rw-r--r-- 7.5 KB
omap_l3_smx.h -rw-r--r-- 8.0 KB
qcom-ebi2.c -rw-r--r-- 10.7 KB
simple-pm-bus.c -rw-r--r-- 1.3 KB
sunxi-rsb.c -rw-r--r-- 19.0 KB
tegra-aconnect.c -rw-r--r-- 2.1 KB
tegra-gmi.c -rw-r--r-- 7.5 KB
uniphier-system-bus.c -rw-r--r-- 7.8 KB
vexpress-config.c -rw-r--r-- 4.7 KB

back to top