[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen/x86: Correct mandatory and SMP barrier definitions
commit f98689c6cd6b0d04e7a02c24ce08591216f910ab Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Fri Dec 2 15:00:41 2016 +0000 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Wed Jan 3 13:02:54 2018 +0000 xen/x86: Correct mandatory and SMP barrier definitions Barriers are a complicated topic, a source of confusion, and their incorrect use is a common cause of bugs. It really doesn't help when Xen's API is the same as Linux, but its ABI different. Bring the two back in line, so programmers stand a chance of actually getting their usage correct. Drop the links in the comment, both of which are now stale. Instead, refer to the vendor system manuals in a generic way. No functional change. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Reviewed-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx> Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/include/asm-x86/system.h | 28 ++++++++++++++++------------ xen/include/asm-x86/x86_64/system.h | 3 --- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/xen/include/asm-x86/system.h b/xen/include/asm-x86/system.h index 9cb6fd7..8ac1703 100644 --- a/xen/include/asm-x86/system.h +++ b/xen/include/asm-x86/system.h @@ -164,23 +164,27 @@ static always_inline unsigned long __xadd( ((typeof(*(ptr)))__xadd(ptr, (typeof(*(ptr)))(v), sizeof(*(ptr)))) /* + * Mandatory barriers, for enforced ordering of reads and writes, e.g. for use + * with MMIO devices mapped with reduced cacheability. + */ +#define mb() asm volatile ( "mfence" ::: "memory" ) +#define rmb() asm volatile ( "lfence" ::: "memory" ) +#define wmb() asm volatile ( "sfence" ::: "memory" ) + +/* + * SMP barriers, for ordering of reads and writes between CPUs, most commonly + * used with shared memory. + * * Both Intel and AMD agree that, from a programmer's viewpoint: * Loads cannot be reordered relative to other loads. * Stores cannot be reordered relative to other stores. - * - * Intel64 Architecture Memory Ordering White Paper - * <http://developer.intel.com/products/processor/manuals/318147.pdf> - * - * AMD64 Architecture Programmer's Manual, Volume 2: System Programming - * <http://www.amd.com/us-en/assets/content_type/\ - * white_papers_and_tech_docs/24593.pdf> + * Loads may be reordered ahead of a unaliasing stores. + * + * Refer to the vendor system programming manuals for further details. */ -#define rmb() barrier() -#define wmb() barrier() - #define smp_mb() mb() -#define smp_rmb() rmb() -#define smp_wmb() wmb() +#define smp_rmb() barrier() +#define smp_wmb() barrier() #define set_mb(var, value) do { xchg(&var, value); } while (0) #define set_wmb(var, value) do { var = value; smp_wmb(); } while (0) diff --git a/xen/include/asm-x86/x86_64/system.h b/xen/include/asm-x86/x86_64/system.h index 88beae1..6b56761 100644 --- a/xen/include/asm-x86/x86_64/system.h +++ b/xen/include/asm-x86/x86_64/system.h @@ -80,7 +80,4 @@ static always_inline __uint128_t __cmpxchg16b( _rc; \ }) -#define mb() \ - asm volatile ( "mfence" : : : "memory" ) - #endif /* __X86_64_SYSTEM_H__ */ -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |