fix aarch64 atomics to load/store 32bit only
authorSzabolcs Nagy <nsz@port70.net>
Sun, 24 Jan 2016 20:51:34 +0000 (20:51 +0000)
committerRich Felker <dalias@aerifal.cx>
Mon, 25 Jan 2016 00:07:35 +0000 (19:07 -0500)
a_ll/a_sc inline asm used 64bit register operands (%0) instead of 32bit
ones (%w0), this at least broke a_and_64 (which always cleared the top
32bit, leaking memory in malloc).

arch/aarch64/atomic_arch.h

index 14fea03bda0772869c44e6e652886313c22af905..6b4f1a4d659fef383047d573c3050cce560e234c 100644 (file)
@@ -2,7 +2,7 @@
 static inline int a_ll(volatile int *p)
 {
        int v;
-       __asm__ __volatile__ ("ldaxr %0, %1" : "=r"(v) : "Q"(*p));
+       __asm__ __volatile__ ("ldaxr %w0,%1" : "=r"(v) : "Q"(*p));
        return v;
 }
 
@@ -10,7 +10,7 @@ static inline int a_ll(volatile int *p)
 static inline int a_sc(volatile int *p, int v)
 {
        int r;
-       __asm__ __volatile__ ("stlxr %w0,%1,%2" : "=&r"(r) : "r"(v), "Q"(*p) : "memory");
+       __asm__ __volatile__ ("stlxr %w0,%w1,%2" : "=&r"(r) : "r"(v), "Q"(*p) : "memory");
        return !r;
 }