Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 90a3ccb0be538a914e6a5c51ae919762261563ad ("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: Michael S. Tsirkin <mst@redhat.com>

-1
-1
arch/sh/include/asm/barrier.h
··· 33 33 #endif 34 34 35 35 #define __smp_store_mb(var, value) do { (void)xchg(&var, value); } while (0) 36 - #define smp_store_mb(var, value) __smp_store_mb(var, value) 37 36 38 37 #include <asm-generic/barrier.h> 39 38