Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _ASM_IA64_SPINLOCK_H |
| 3 | #define _ASM_IA64_SPINLOCK_H |
| 4 | |
| 5 | /* |
| 6 | * Copyright (C) 1998-2003 Hewlett-Packard Co |
| 7 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 8 | * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> |
| 9 | * |
| 10 | * This file is used for SMP configurations only. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/compiler.h> |
| 14 | #include <linux/kernel.h> |
Jiri Slaby | 1977f03 | 2007-10-18 23:40:25 -0700 | [diff] [blame] | 15 | #include <linux/bitops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 17 | #include <linux/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <asm/intrinsics.h> |
Peter Zijlstra | 726328d | 2016-05-26 10:35:03 +0200 | [diff] [blame] | 19 | #include <asm/barrier.h> |
| 20 | #include <asm/processor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 22 | #define arch_spin_lock_init(x) ((x)->lock = 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | /* |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 25 | * Ticket locks are conceptually two parts, one indicating the current head of |
| 26 | * the queue, and the other indicating the current tail. The lock is acquired |
| 27 | * by atomically noting the tail and incrementing it by one (thus adding |
| 28 | * ourself to the queue and noting our position), then waiting until the head |
| 29 | * becomes equal to the the initial value of the tail. |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 30 | * The pad bits in the middle are used to prevent the next_ticket number |
| 31 | * overflowing into the now_serving number. |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 32 | * |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 33 | * 31 17 16 15 14 0 |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 34 | * +----------------------------------------------------+ |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 35 | * | now_serving | padding | next_ticket | |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 36 | * +----------------------------------------------------+ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | */ |
| 38 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 39 | #define TICKET_SHIFT 17 |
| 40 | #define TICKET_BITS 15 |
| 41 | #define TICKET_MASK ((1 << TICKET_BITS) - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 43 | static __always_inline void __ticket_spin_lock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 45 | int *p = (int *)&lock->lock, ticket, serve; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 47 | ticket = ia64_fetchadd(1, p, acq); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 48 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 49 | if (!(((ticket >> TICKET_SHIFT) ^ ticket) & TICKET_MASK)) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 50 | return; |
| 51 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 52 | ia64_invala(); |
| 53 | |
| 54 | for (;;) { |
| 55 | asm volatile ("ld4.c.nc %0=[%1]" : "=r"(serve) : "r"(p) : "memory"); |
| 56 | |
| 57 | if (!(((serve >> TICKET_SHIFT) ^ ticket) & TICKET_MASK)) |
| 58 | return; |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 59 | cpu_relax(); |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 60 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | } |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 62 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 63 | static __always_inline int __ticket_spin_trylock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 64 | { |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 65 | int tmp = READ_ONCE(lock->lock); |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 66 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 67 | if (!(((tmp >> TICKET_SHIFT) ^ tmp) & TICKET_MASK)) |
| 68 | return ia64_cmpxchg(acq, &lock->lock, tmp, tmp + 1, sizeof (tmp)) == tmp; |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 69 | return 0; |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 72 | static __always_inline void __ticket_spin_unlock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 73 | { |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 74 | unsigned short *p = (unsigned short *)&lock->lock + 1, tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Will Deacon | 49ca646 | 2019-02-22 13:37:21 +0000 | [diff] [blame] | 76 | /* This could be optimised with ARCH_HAS_MMIOWB */ |
| 77 | mmiowb(); |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 78 | asm volatile ("ld2.bias %0=[%1]" : "=r"(tmp) : "r"(p)); |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 79 | WRITE_ONCE(*p, (tmp + 2) & ~1); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 82 | static inline int __ticket_spin_is_locked(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 83 | { |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 84 | long tmp = READ_ONCE(lock->lock); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 85 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 86 | return !!(((tmp >> TICKET_SHIFT) ^ tmp) & TICKET_MASK); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 89 | static inline int __ticket_spin_is_contended(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 90 | { |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 91 | long tmp = READ_ONCE(lock->lock); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 92 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 93 | return ((tmp - (tmp >> TICKET_SHIFT)) & TICKET_MASK) > 1; |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Luck, Tony | 71c7356 | 2013-09-03 15:31:21 -0700 | [diff] [blame] | 96 | static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock) |
| 97 | { |
| 98 | return !(((lock.lock >> TICKET_SHIFT) ^ lock.lock) & TICKET_MASK); |
| 99 | } |
| 100 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 101 | static inline int arch_spin_is_locked(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 102 | { |
| 103 | return __ticket_spin_is_locked(lock); |
| 104 | } |
| 105 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 106 | static inline int arch_spin_is_contended(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 107 | { |
| 108 | return __ticket_spin_is_contended(lock); |
| 109 | } |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 110 | #define arch_spin_is_contended arch_spin_is_contended |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 111 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 112 | static __always_inline void arch_spin_lock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 113 | { |
| 114 | __ticket_spin_lock(lock); |
| 115 | } |
| 116 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 117 | static __always_inline int arch_spin_trylock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 118 | { |
| 119 | return __ticket_spin_trylock(lock); |
| 120 | } |
| 121 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 122 | static __always_inline void arch_spin_unlock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 123 | { |
| 124 | __ticket_spin_unlock(lock); |
| 125 | } |
| 126 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 127 | static __always_inline void arch_spin_lock_flags(arch_spinlock_t *lock, |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 128 | unsigned long flags) |
| 129 | { |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 130 | arch_spin_lock(lock); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 131 | } |
Will Deacon | a4c1887 | 2017-10-03 19:25:29 +0100 | [diff] [blame] | 132 | #define arch_spin_lock_flags arch_spin_lock_flags |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 133 | |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 134 | #ifdef ASM_SUPPORTED |
| 135 | |
| 136 | static __always_inline void |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 137 | arch_read_lock_flags(arch_rwlock_t *lock, unsigned long flags) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 138 | { |
| 139 | __asm__ __volatile__ ( |
| 140 | "tbit.nz p6, p0 = %1,%2\n" |
| 141 | "br.few 3f\n" |
| 142 | "1:\n" |
| 143 | "fetchadd4.rel r2 = [%0], -1;;\n" |
| 144 | "(p6) ssm psr.i\n" |
| 145 | "2:\n" |
| 146 | "hint @pause\n" |
| 147 | "ld4 r2 = [%0];;\n" |
| 148 | "cmp4.lt p7,p0 = r2, r0\n" |
| 149 | "(p7) br.cond.spnt.few 2b\n" |
| 150 | "(p6) rsm psr.i\n" |
| 151 | ";;\n" |
| 152 | "3:\n" |
| 153 | "fetchadd4.acq r2 = [%0], 1;;\n" |
| 154 | "cmp4.lt p7,p0 = r2, r0\n" |
| 155 | "(p7) br.cond.spnt.few 1b\n" |
| 156 | : : "r"(lock), "r"(flags), "i"(IA64_PSR_I_BIT) |
| 157 | : "p6", "p7", "r2", "memory"); |
| 158 | } |
| 159 | |
Will Deacon | a4c1887 | 2017-10-03 19:25:29 +0100 | [diff] [blame] | 160 | #define arch_read_lock_flags arch_read_lock_flags |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 161 | #define arch_read_lock(lock) arch_read_lock_flags(lock, 0) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 162 | |
| 163 | #else /* !ASM_SUPPORTED */ |
| 164 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 165 | #define arch_read_lock_flags(rw, flags) arch_read_lock(rw) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 166 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 167 | #define arch_read_lock(rw) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | do { \ |
Thomas Gleixner | fb3a6bb | 2009-12-03 20:01:19 +0100 | [diff] [blame] | 169 | arch_rwlock_t *__read_lock_ptr = (rw); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | \ |
| 171 | while (unlikely(ia64_fetchadd(1, (int *) __read_lock_ptr, acq) < 0)) { \ |
| 172 | ia64_fetchadd(-1, (int *) __read_lock_ptr, rel); \ |
| 173 | while (*(volatile int *)__read_lock_ptr < 0) \ |
| 174 | cpu_relax(); \ |
| 175 | } \ |
| 176 | } while (0) |
| 177 | |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 178 | #endif /* !ASM_SUPPORTED */ |
| 179 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 180 | #define arch_read_unlock(rw) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | do { \ |
Thomas Gleixner | fb3a6bb | 2009-12-03 20:01:19 +0100 | [diff] [blame] | 182 | arch_rwlock_t *__read_lock_ptr = (rw); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | ia64_fetchadd(-1, (int *) __read_lock_ptr, rel); \ |
| 184 | } while (0) |
| 185 | |
| 186 | #ifdef ASM_SUPPORTED |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 187 | |
| 188 | static __always_inline void |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 189 | arch_write_lock_flags(arch_rwlock_t *lock, unsigned long flags) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 190 | { |
| 191 | __asm__ __volatile__ ( |
| 192 | "tbit.nz p6, p0 = %1, %2\n" |
| 193 | "mov ar.ccv = r0\n" |
| 194 | "dep r29 = -1, r0, 31, 1\n" |
| 195 | "br.few 3f;;\n" |
| 196 | "1:\n" |
| 197 | "(p6) ssm psr.i\n" |
| 198 | "2:\n" |
| 199 | "hint @pause\n" |
| 200 | "ld4 r2 = [%0];;\n" |
| 201 | "cmp4.eq p0,p7 = r0, r2\n" |
| 202 | "(p7) br.cond.spnt.few 2b\n" |
| 203 | "(p6) rsm psr.i\n" |
| 204 | ";;\n" |
| 205 | "3:\n" |
| 206 | "cmpxchg4.acq r2 = [%0], r29, ar.ccv;;\n" |
| 207 | "cmp4.eq p0,p7 = r0, r2\n" |
| 208 | "(p7) br.cond.spnt.few 1b;;\n" |
| 209 | : : "r"(lock), "r"(flags), "i"(IA64_PSR_I_BIT) |
| 210 | : "ar.ccv", "p6", "p7", "r2", "r29", "memory"); |
| 211 | } |
| 212 | |
Will Deacon | a4c1887 | 2017-10-03 19:25:29 +0100 | [diff] [blame] | 213 | #define arch_write_lock_flags arch_write_lock_flags |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 214 | #define arch_write_lock(rw) arch_write_lock_flags(rw, 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 216 | #define arch_write_trylock(rw) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | ({ \ |
| 218 | register long result; \ |
| 219 | \ |
| 220 | __asm__ __volatile__ ( \ |
| 221 | "mov ar.ccv = r0\n" \ |
| 222 | "dep r29 = -1, r0, 31, 1;;\n" \ |
| 223 | "cmpxchg4.acq %0 = [%1], r29, ar.ccv\n" \ |
| 224 | : "=r"(result) : "r"(rw) : "ar.ccv", "r29", "memory"); \ |
| 225 | (result == 0); \ |
| 226 | }) |
| 227 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 228 | static inline void arch_write_unlock(arch_rwlock_t *x) |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 229 | { |
| 230 | u8 *y = (u8 *)x; |
| 231 | barrier(); |
| 232 | asm volatile ("st1.rel.nta [%0] = r0\n\t" :: "r"(y+3) : "memory" ); |
| 233 | } |
| 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | #else /* !ASM_SUPPORTED */ |
| 236 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 237 | #define arch_write_lock(l) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | ({ \ |
| 239 | __u64 ia64_val, ia64_set_val = ia64_dep_mi(-1, 0, 31, 1); \ |
| 240 | __u32 *ia64_write_lock_ptr = (__u32 *) (l); \ |
| 241 | do { \ |
| 242 | while (*ia64_write_lock_ptr) \ |
| 243 | ia64_barrier(); \ |
| 244 | ia64_val = ia64_cmpxchg4_acq(ia64_write_lock_ptr, ia64_set_val, 0); \ |
| 245 | } while (ia64_val); \ |
| 246 | }) |
| 247 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 248 | #define arch_write_trylock(rw) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | ({ \ |
| 250 | __u64 ia64_val; \ |
| 251 | __u64 ia64_set_val = ia64_dep_mi(-1, 0, 31,1); \ |
| 252 | ia64_val = ia64_cmpxchg4_acq((__u32 *)(rw), ia64_set_val, 0); \ |
| 253 | (ia64_val == 0); \ |
| 254 | }) |
| 255 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 256 | static inline void arch_write_unlock(arch_rwlock_t *x) |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 257 | { |
| 258 | barrier(); |
| 259 | x->write_lock = 0; |
| 260 | } |
| 261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | #endif /* !ASM_SUPPORTED */ |
| 263 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 264 | static inline int arch_read_trylock(arch_rwlock_t *x) |
Keith Owens | bf7ecec | 2005-12-10 14:24:28 +1100 | [diff] [blame] | 265 | { |
| 266 | union { |
Thomas Gleixner | fb3a6bb | 2009-12-03 20:01:19 +0100 | [diff] [blame] | 267 | arch_rwlock_t lock; |
Keith Owens | bf7ecec | 2005-12-10 14:24:28 +1100 | [diff] [blame] | 268 | __u32 word; |
| 269 | } old, new; |
| 270 | old.lock = new.lock = *x; |
| 271 | old.lock.write_lock = new.lock.write_lock = 0; |
| 272 | ++new.lock.read_counter; |
| 273 | return (u32)ia64_cmpxchg4_acq((__u32 *)(x), new.word, old.word) == old.word; |
| 274 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | #endif /* _ASM_IA64_SPINLOCK_H */ |