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
algos
busses
muxes
Kconfig -rw-r--r-- 4.4 KB
Makefile -rw-r--r-- 643 bytes
i2c-boardinfo.c -rw-r--r-- 3.3 KB
i2c-core-acpi.c -rw-r--r-- 15.8 KB
i2c-core-base.c -rw-r--r-- 60.5 KB
i2c-core-of.c -rw-r--r-- 6.7 KB
i2c-core-slave.c -rw-r--r-- 2.9 KB
i2c-core-smbus.c -rw-r--r-- 17.0 KB
i2c-core.h -rw-r--r-- 2.2 KB
i2c-dev.c -rw-r--r-- 17.9 KB
i2c-mux.c -rw-r--r-- 12.2 KB
i2c-slave-eeprom.c -rw-r--r-- 4.5 KB
i2c-smbus.c -rw-r--r-- 6.8 KB
i2c-stub.c -rw-r--r-- 10.3 KB

back to top