diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-09-19 11:10:57 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-10-24 11:30:55 +0200 |
commit | 374293ca6fb060f0302e5ca76ddccbc2bbb075c9 (patch) | |
tree | dc95662c0cdcc77ecf1e2f2416756ef05a146f79 /util/qdist.c | |
parent | f1ee86963b9a7bc6a60b823dbf682fd0a62ffcc4 (diff) | |
download | qemu-374293ca6fb060f0302e5ca76ddccbc2bbb075c9.tar.gz qemu-374293ca6fb060f0302e5ca76ddccbc2bbb075c9.tar.bz2 qemu-374293ca6fb060f0302e5ca76ddccbc2bbb075c9.zip |
qemu-thread: use acquire/release to clarify semantics of QemuEvent
Do not use the somewhat mysterious atomic_mb_read/atomic_mb_set,
instead make sure that the operations on QemuEvent are annotated
with the desired acquire and release semantics.
In particular, qemu_event_set wakes up the waiting thread, so it must
be a release from the POV of the waker (compare with qemu_mutex_unlock).
And it actually needs a full barrier, because that's the only thing that
provides something like a "load-release".
Use smp_mb_acquire until we have atomic_load_acquire and
atomic_store_release in atomic.h.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'util/qdist.c')
0 files changed, 0 insertions, 0 deletions