asm-generic: implement virt_xxx memory barriers
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 27 Dec 2015 16:23:01 +0000 (18:23 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Tue, 12 Jan 2016 18:46:59 +0000 (20:46 +0200)
commit6a65d26385bf487926a0616650927303058551e3
tree5255f100d5688d41d47ab86a2fd4a6933d3325d9
parent1638fb72070f8faf2ac0787fafbb839d0c859d5b
asm-generic: implement virt_xxx memory barriers

Guests running within virtual machines might be affected by SMP effects even if
the guest itself is compiled without SMP support.  This is an artifact of
interfacing with an SMP host while running an UP kernel.  Using mandatory
barriers for this use-case would be possible but is often suboptimal.

In particular, virtio uses a bunch of confusing ifdefs to work around
this, while xen just uses the mandatory barriers.

To better handle this case, low-level virt_mb() etc macros are made available.
These are implemented trivially using the low-level __smp_xxx macros,
the purpose of these wrappers is to annotate those specific cases.

These have the same effect as smp_mb() etc when SMP is enabled, but generate
identical code for SMP and non-SMP systems. For example, virtual machine guests
should use virt_mb() rather than smp_mb() when synchronizing against a
(possibly SMP) host.

Suggested-by: David Miller <davem@davemloft.net>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Documentation/memory-barriers.txt
include/asm-generic/barrier.h