Skip to content
Snippets Groups Projects
Commit fb9b050c authored by Michael S. Tsirkin's avatar Michael S. Tsirkin
Browse files

sh: fix smp_store_mb for !SMP


sh variant of smp_store_mb() calls xchg() on !SMP which is stronger than
implied by both the name and the documentation.

commit 90a3ccb0 ("sh: define __smp_xxx,
fix smp_store_mb for !SMP") was supposed to fix it but
left the bug in place.

Drop smp_store_mb, so that code in asm-generic/barrier.h
will define it correctly depending on CONFIG_SMP.

Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
parent a7c49033
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,6 @@
#endif
#define __smp_store_mb(var, value) do { (void)xchg(&var, value); } while (0)
#define smp_store_mb(var, value) __smp_store_mb(var, value)
#include <asm-generic/barrier.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment