Index: lock_stubs.S =================================================================== RCS file: /cvsroot/src/sys/arch/aarch64/aarch64/lock_stubs.S,v retrieving revision 1.2 diff -p -p -u -r1.2 lock_stubs.S --- lock_stubs.S 13 Aug 2020 07:14:04 -0000 1.2 +++ lock_stubs.S 13 Aug 2020 17:49:59 -0000 @@ -45,11 +45,10 @@ RCSID("$NetBSD: lock_stubs.S,v 1.2 2020/ ENTRY(mutex_enter) mrs x1, tpidr_el1 /* x1 = curlwp */ 1: - ldxr x2, [x0] /* load old value */ + ldaxr x2, [x0] /* load old value */ cbnz x2, 3f /* equals zero? */ stxr w3, x1, [x0] /* store curlwp as new value */ cbnz w3, 2f /* succeed? nope, try again. */ - dmb sy /* membar_enter() */ ret 2: b 1b @@ -64,13 +63,12 @@ END(mutex_enter) * so just use ldxr+stxr to achieve the same. */ ENTRY(mutex_exit) - dmb sy /* membar_exit() */ mrs x1, tpidr_el1 /* x1 = curlwp */ 1: ldxr x2, [x0] /* load old value */ cmp x1, x2 /* equals curlwp? */ b.ne 3f /* slow path if different */ - stxr w3, xzr, [x0] /* store zero as new value */ + stlxr w3, xzr, [x0] /* store zero as new value */ cbnz w3, 2f /* succeed? nope, try again. */ ret 2: