]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Change to shared header file unrelated to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:22:57 +0000 (11:22 -0700)
committerOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:22:57 +0000 (11:22 -0700)
open-vm-tools/lib/include/vm_basic_asm_x86_common.h

index 73b3a136206a309478db783cb4f2819f46267779..6c87e838a2d1f68d169eb1bfe8eb4b54bdf4f7e2 100644 (file)
@@ -308,9 +308,9 @@ RDTSC_BARRIER(void)
 
 
 /*
- * Compiler/CPU barriers. These take the form of <mem access type>_<mem access
- * type>_MEM_BARRIER, where <mem access type> is either LD (load), ST (store)
- * or LDST (any).
+ * (Compiler + CPU) memory barriers. These take the form of
+ * <mem access type>_<mem access type>_MEM_BARRIER, where <mem access type> is
+ * either LD (load), ST (store) or LDST (any).
  *
  * On x86, we only need to care specifically about store-load
  * reordering on normal memory types and mfence, otherwise only a compiler
@@ -329,4 +329,5 @@ RDTSC_BARRIER(void)
 #define LDST_ST_MEM_BARRIER()    COMPILER_MEM_BARRIER()
 #define LDST_LDST_MEM_BARRIER()  ST_LD_MEM_BARRIER()
 
+
 #endif // _VM_BASIC_ASM_X86_COMMON_H_