From 21dcc48dc7ec48bf7b2a40c619e1c96ca4d2477c Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Tue, 9 Sep 2014 13:57:38 +0200 Subject: [PATCH] Fix typo in solaris spinlock fix. 07968dbfaad03 missed part of the S_UNLOCK define when building for sparcv8+. --- src/include/storage/s_lock.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index 7ad903860d1..48583f8fc22 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -457,6 +457,7 @@ do \ * #LoadStore (RMO) | #StoreStore (RMO, PSO) together are the appropriate * release barrier for sparcv8+ upwards. */ +#define S_UNLOCK(lock) \ do \ { \ __asm__ __volatile__ ("membar #LoadStore | #StoreStore \n":::"memory"); \