ath9k_hw: fix TSF offset calculation
[linux-2.6/btrfs-unstable.git] / lib / lockref.c
blobd2b123f8456b22479681d4512fbb8c1e445a0158
1 #include <linux/export.h>
2 #include <linux/lockref.h>
4 #if USE_CMPXCHG_LOCKREF
6 /*
7 * Allow weakly-ordered memory architectures to provide barrier-less
8 * cmpxchg semantics for lockref updates.
9 */
10 #ifndef cmpxchg64_relaxed
11 # define cmpxchg64_relaxed cmpxchg64
12 #endif
15 * Allow architectures to override the default cpu_relax() within CMPXCHG_LOOP.
16 * This is useful for architectures with an expensive cpu_relax().
18 #ifndef arch_mutex_cpu_relax
19 # define arch_mutex_cpu_relax() cpu_relax()
20 #endif
23 * Note that the "cmpxchg()" reloads the "old" value for the
24 * failure case.
26 #define CMPXCHG_LOOP(CODE, SUCCESS) do { \
27 struct lockref old; \
28 BUILD_BUG_ON(sizeof(old) != 8); \
29 old.lock_count = ACCESS_ONCE(lockref->lock_count); \
30 while (likely(arch_spin_value_unlocked(old.lock.rlock.raw_lock))) { \
31 struct lockref new = old, prev = old; \
32 CODE \
33 old.lock_count = cmpxchg64_relaxed(&lockref->lock_count, \
34 old.lock_count, \
35 new.lock_count); \
36 if (likely(old.lock_count == prev.lock_count)) { \
37 SUCCESS; \
38 } \
39 arch_mutex_cpu_relax(); \
40 } \
41 } while (0)
43 #else
45 #define CMPXCHG_LOOP(CODE, SUCCESS) do { } while (0)
47 #endif
49 /**
50 * lockref_get - Increments reference count unconditionally
51 * @lockref: pointer to lockref structure
53 * This operation is only valid if you already hold a reference
54 * to the object, so you know the count cannot be zero.
56 void lockref_get(struct lockref *lockref)
58 CMPXCHG_LOOP(
59 new.count++;
61 return;
64 spin_lock(&lockref->lock);
65 lockref->count++;
66 spin_unlock(&lockref->lock);
68 EXPORT_SYMBOL(lockref_get);
70 /**
71 * lockref_get_not_zero - Increments count unless the count is 0
72 * @lockref: pointer to lockref structure
73 * Return: 1 if count updated successfully or 0 if count was zero
75 int lockref_get_not_zero(struct lockref *lockref)
77 int retval;
79 CMPXCHG_LOOP(
80 new.count++;
81 if (!old.count)
82 return 0;
84 return 1;
87 spin_lock(&lockref->lock);
88 retval = 0;
89 if (lockref->count) {
90 lockref->count++;
91 retval = 1;
93 spin_unlock(&lockref->lock);
94 return retval;
96 EXPORT_SYMBOL(lockref_get_not_zero);
98 /**
99 * lockref_get_or_lock - Increments count unless the count is 0
100 * @lockref: pointer to lockref structure
101 * Return: 1 if count updated successfully or 0 if count was zero
102 * and we got the lock instead.
104 int lockref_get_or_lock(struct lockref *lockref)
106 CMPXCHG_LOOP(
107 new.count++;
108 if (!old.count)
109 break;
111 return 1;
114 spin_lock(&lockref->lock);
115 if (!lockref->count)
116 return 0;
117 lockref->count++;
118 spin_unlock(&lockref->lock);
119 return 1;
121 EXPORT_SYMBOL(lockref_get_or_lock);
124 * lockref_put_or_lock - decrements count unless count <= 1 before decrement
125 * @lockref: pointer to lockref structure
126 * Return: 1 if count updated successfully or 0 if count <= 1 and lock taken
128 int lockref_put_or_lock(struct lockref *lockref)
130 CMPXCHG_LOOP(
131 new.count--;
132 if (old.count <= 1)
133 break;
135 return 1;
138 spin_lock(&lockref->lock);
139 if (lockref->count <= 1)
140 return 0;
141 lockref->count--;
142 spin_unlock(&lockref->lock);
143 return 1;
145 EXPORT_SYMBOL(lockref_put_or_lock);
148 * lockref_mark_dead - mark lockref dead
149 * @lockref: pointer to lockref structure
151 void lockref_mark_dead(struct lockref *lockref)
153 assert_spin_locked(&lockref->lock);
154 lockref->count = -128;
156 EXPORT_SYMBOL(lockref_mark_dead);
159 * lockref_get_not_dead - Increments count unless the ref is dead
160 * @lockref: pointer to lockref structure
161 * Return: 1 if count updated successfully or 0 if lockref was dead
163 int lockref_get_not_dead(struct lockref *lockref)
165 int retval;
167 CMPXCHG_LOOP(
168 new.count++;
169 if ((int)old.count < 0)
170 return 0;
172 return 1;
175 spin_lock(&lockref->lock);
176 retval = 0;
177 if ((int) lockref->count >= 0) {
178 lockref->count++;
179 retval = 1;
181 spin_unlock(&lockref->lock);
182 return retval;
184 EXPORT_SYMBOL(lockref_get_not_dead);