Skip to content

Commit

Permalink
UTIL: fix memory barrier for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei-Lebedev committed Mar 15, 2024
1 parent 45fb0b9 commit 72ec5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/arch/aarch64/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#define ucc_memory_bus_load_fence() ucc_aarch64_dmb(oshld)

#define ucc_memory_cpu_fence() ucc_aarch64_dmb(ish)
#define ucc_memory_cpu_store_fence() ucc_aarch64_dmb(ishst)
#define ucc_memory_cpu_store_fence() ucc_aarch64_dsb(ishst)
#define ucc_memory_cpu_load_fence() ucc_aarch64_dmb(ishld)

typedef struct ucc_aarch64_cpuid {
Expand Down

0 comments on commit 72ec5d6

Please sign in to comment.