diff options
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/include/asm/futex.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/arch/microblaze/include/asm/futex.h b/arch/microblaze/include/asm/futex.h index ad3fd61b2fe7..fa019ed65dfb 100644 --- a/arch/microblaze/include/asm/futex.h +++ b/arch/microblaze/include/asm/futex.h | |||
@@ -94,31 +94,33 @@ futex_atomic_op_inuser(int encoded_op, int __user *uaddr) | |||
94 | } | 94 | } |
95 | 95 | ||
96 | static inline int | 96 | static inline int |
97 | futex_atomic_cmpxchg_inatomic(int __user *uaddr, int oldval, int newval) | 97 | futex_atomic_cmpxchg_inatomic(int *uval, int __user *uaddr, |
98 | int oldval, int newval) | ||
98 | { | 99 | { |
99 | int prev, cmp; | 100 | int ret = 0, prev, cmp; |
100 | 101 | ||
101 | if (!access_ok(VERIFY_WRITE, uaddr, sizeof(int))) | 102 | if (!access_ok(VERIFY_WRITE, uaddr, sizeof(int))) |
102 | return -EFAULT; | 103 | return -EFAULT; |
103 | 104 | ||
104 | __asm__ __volatile__ ("1: lwx %0, %2, r0; \ | 105 | __asm__ __volatile__ ("1: lwx %1, %3, r0; \ |
105 | cmp %1, %0, %3; \ | 106 | cmp %2, %1, %4; \ |
106 | beqi %1, 3f; \ | 107 | beqi %2, 3f; \ |
107 | 2: swx %4, %2, r0; \ | 108 | 2: swx %5, %3, r0; \ |
108 | addic %1, r0, 0; \ | 109 | addic %2, r0, 0; \ |
109 | bnei %1, 1b; \ | 110 | bnei %2, 1b; \ |
110 | 3: \ | 111 | 3: \ |
111 | .section .fixup,\"ax\"; \ | 112 | .section .fixup,\"ax\"; \ |
112 | 4: brid 3b; \ | 113 | 4: brid 3b; \ |
113 | addik %0, r0, %5; \ | 114 | addik %0, r0, %6; \ |
114 | .previous; \ | 115 | .previous; \ |
115 | .section __ex_table,\"a\"; \ | 116 | .section __ex_table,\"a\"; \ |
116 | .word 1b,4b,2b,4b; \ | 117 | .word 1b,4b,2b,4b; \ |
117 | .previous;" \ | 118 | .previous;" \ |
118 | : "=&r" (prev), "=&r"(cmp) \ | 119 | : "+r" (ret), "=&r" (prev), "=&r"(cmp) \ |
119 | : "r" (uaddr), "r" (oldval), "r" (newval), "i" (-EFAULT)); | 120 | : "r" (uaddr), "r" (oldval), "r" (newval), "i" (-EFAULT)); |
120 | 121 | ||
121 | return prev; | 122 | *uval = prev; |
123 | return ret; | ||
122 | } | 124 | } |
123 | 125 | ||
124 | #endif /* __KERNEL__ */ | 126 | #endif /* __KERNEL__ */ |