blob: 3d468b53d4c931de6d76d0f51be6a07b3a066ecf [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds2f4f12e2013-09-02 11:58:20 -07002#include <linux/export.h>
3#include <linux/lockref.h>
4
Peter Zijlstra57f42572013-11-14 14:31:54 -08005#if USE_CMPXCHG_LOCKREF
Linus Torvaldsbc08b442013-09-02 12:12:15 -07006
7/*
8 * Note that the "cmpxchg()" reloads the "old" value for the
9 * failure case.
10 */
11#define CMPXCHG_LOOP(CODE, SUCCESS) do { \
12 struct lockref old; \
13 BUILD_BUG_ON(sizeof(old) != 8); \
Davidlohr Bueso4d3199e2015-02-22 19:31:41 -080014 old.lock_count = READ_ONCE(lockref->lock_count); \
Linus Torvaldsbc08b442013-09-02 12:12:15 -070015 while (likely(arch_spin_value_unlocked(old.lock.rlock.raw_lock))) { \
16 struct lockref new = old, prev = old; \
17 CODE \
Will Deacond2212b42013-09-26 17:27:00 +010018 old.lock_count = cmpxchg64_relaxed(&lockref->lock_count, \
19 old.lock_count, \
20 new.lock_count); \
Linus Torvaldsbc08b442013-09-02 12:12:15 -070021 if (likely(old.lock_count == prev.lock_count)) { \
22 SUCCESS; \
23 } \
Christian Borntraegerf2f09a42016-10-25 11:03:14 +020024 cpu_relax(); \
Linus Torvaldsbc08b442013-09-02 12:12:15 -070025 } \
26} while (0)
27
28#else
29
30#define CMPXCHG_LOOP(CODE, SUCCESS) do { } while (0)
31
32#endif
33
Linus Torvalds2f4f12e2013-09-02 11:58:20 -070034/**
35 * lockref_get - Increments reference count unconditionally
Linus Torvalds44a0cf92013-09-07 15:30:29 -070036 * @lockref: pointer to lockref structure
Linus Torvalds2f4f12e2013-09-02 11:58:20 -070037 *
38 * This operation is only valid if you already hold a reference
39 * to the object, so you know the count cannot be zero.
40 */
41void lockref_get(struct lockref *lockref)
42{
Linus Torvaldsbc08b442013-09-02 12:12:15 -070043 CMPXCHG_LOOP(
44 new.count++;
45 ,
46 return;
47 );
48
Linus Torvalds2f4f12e2013-09-02 11:58:20 -070049 spin_lock(&lockref->lock);
50 lockref->count++;
51 spin_unlock(&lockref->lock);
52}
53EXPORT_SYMBOL(lockref_get);
54
55/**
Linus Torvalds360f5472015-01-09 15:19:03 -080056 * lockref_get_not_zero - Increments count unless the count is 0 or dead
Linus Torvalds44a0cf92013-09-07 15:30:29 -070057 * @lockref: pointer to lockref structure
Linus Torvalds2f4f12e2013-09-02 11:58:20 -070058 * Return: 1 if count updated successfully or 0 if count was zero
59 */
60int lockref_get_not_zero(struct lockref *lockref)
61{
Linus Torvaldsbc08b442013-09-02 12:12:15 -070062 int retval;
63
64 CMPXCHG_LOOP(
65 new.count++;
Linus Torvalds360f5472015-01-09 15:19:03 -080066 if (old.count <= 0)
Linus Torvaldsbc08b442013-09-02 12:12:15 -070067 return 0;
68 ,
69 return 1;
70 );
Linus Torvalds2f4f12e2013-09-02 11:58:20 -070071
72 spin_lock(&lockref->lock);
Linus Torvaldsbc08b442013-09-02 12:12:15 -070073 retval = 0;
Linus Torvalds360f5472015-01-09 15:19:03 -080074 if (lockref->count > 0) {
Linus Torvalds2f4f12e2013-09-02 11:58:20 -070075 lockref->count++;
76 retval = 1;
77 }
78 spin_unlock(&lockref->lock);
79 return retval;
80}
81EXPORT_SYMBOL(lockref_get_not_zero);
82
83/**
Andreas Gruenbacher450b1f62018-03-29 08:07:46 +010084 * lockref_put_not_zero - Decrements count unless count <= 1 before decrement
85 * @lockref: pointer to lockref structure
86 * Return: 1 if count updated successfully or 0 if count would become zero
87 */
88int lockref_put_not_zero(struct lockref *lockref)
89{
90 int retval;
91
92 CMPXCHG_LOOP(
93 new.count--;
94 if (old.count <= 1)
95 return 0;
96 ,
97 return 1;
98 );
99
100 spin_lock(&lockref->lock);
101 retval = 0;
102 if (lockref->count > 1) {
103 lockref->count--;
104 retval = 1;
105 }
106 spin_unlock(&lockref->lock);
107 return retval;
108}
109EXPORT_SYMBOL(lockref_put_not_zero);
110
111/**
Linus Torvalds360f5472015-01-09 15:19:03 -0800112 * lockref_get_or_lock - Increments count unless the count is 0 or dead
Linus Torvalds44a0cf92013-09-07 15:30:29 -0700113 * @lockref: pointer to lockref structure
Linus Torvalds2f4f12e2013-09-02 11:58:20 -0700114 * Return: 1 if count updated successfully or 0 if count was zero
115 * and we got the lock instead.
116 */
117int lockref_get_or_lock(struct lockref *lockref)
118{
Linus Torvaldsbc08b442013-09-02 12:12:15 -0700119 CMPXCHG_LOOP(
120 new.count++;
Linus Torvalds360f5472015-01-09 15:19:03 -0800121 if (old.count <= 0)
Linus Torvaldsbc08b442013-09-02 12:12:15 -0700122 break;
123 ,
124 return 1;
125 );
126
Linus Torvalds2f4f12e2013-09-02 11:58:20 -0700127 spin_lock(&lockref->lock);
Linus Torvalds360f5472015-01-09 15:19:03 -0800128 if (lockref->count <= 0)
Linus Torvalds2f4f12e2013-09-02 11:58:20 -0700129 return 0;
130 lockref->count++;
131 spin_unlock(&lockref->lock);
132 return 1;
133}
134EXPORT_SYMBOL(lockref_get_or_lock);
135
136/**
Linus Torvalds360f5472015-01-09 15:19:03 -0800137 * lockref_put_return - Decrement reference count if possible
138 * @lockref: pointer to lockref structure
139 *
140 * Decrement the reference count and return the new value.
141 * If the lockref was dead or locked, return an error.
142 */
143int lockref_put_return(struct lockref *lockref)
144{
145 CMPXCHG_LOOP(
146 new.count--;
147 if (old.count <= 0)
148 return -1;
149 ,
150 return new.count;
151 );
152 return -1;
153}
154EXPORT_SYMBOL(lockref_put_return);
155
156/**
Linus Torvalds2f4f12e2013-09-02 11:58:20 -0700157 * lockref_put_or_lock - decrements count unless count <= 1 before decrement
Linus Torvalds44a0cf92013-09-07 15:30:29 -0700158 * @lockref: pointer to lockref structure
Linus Torvalds2f4f12e2013-09-02 11:58:20 -0700159 * Return: 1 if count updated successfully or 0 if count <= 1 and lock taken
160 */
161int lockref_put_or_lock(struct lockref *lockref)
162{
Linus Torvaldsbc08b442013-09-02 12:12:15 -0700163 CMPXCHG_LOOP(
164 new.count--;
165 if (old.count <= 1)
166 break;
167 ,
168 return 1;
169 );
170
Linus Torvalds2f4f12e2013-09-02 11:58:20 -0700171 spin_lock(&lockref->lock);
172 if (lockref->count <= 1)
173 return 0;
174 lockref->count--;
175 spin_unlock(&lockref->lock);
176 return 1;
177}
178EXPORT_SYMBOL(lockref_put_or_lock);
Linus Torvaldse7d33bb2013-09-07 15:49:18 -0700179
180/**
181 * lockref_mark_dead - mark lockref dead
182 * @lockref: pointer to lockref structure
183 */
184void lockref_mark_dead(struct lockref *lockref)
185{
186 assert_spin_locked(&lockref->lock);
187 lockref->count = -128;
188}
Steven Whitehousee66cf162013-10-15 15:18:08 +0100189EXPORT_SYMBOL(lockref_mark_dead);
Linus Torvaldse7d33bb2013-09-07 15:49:18 -0700190
191/**
192 * lockref_get_not_dead - Increments count unless the ref is dead
193 * @lockref: pointer to lockref structure
194 * Return: 1 if count updated successfully or 0 if lockref was dead
195 */
196int lockref_get_not_dead(struct lockref *lockref)
197{
198 int retval;
199
200 CMPXCHG_LOOP(
201 new.count++;
Linus Torvalds360f5472015-01-09 15:19:03 -0800202 if (old.count < 0)
Linus Torvaldse7d33bb2013-09-07 15:49:18 -0700203 return 0;
204 ,
205 return 1;
206 );
207
208 spin_lock(&lockref->lock);
209 retval = 0;
Linus Torvalds360f5472015-01-09 15:19:03 -0800210 if (lockref->count >= 0) {
Linus Torvaldse7d33bb2013-09-07 15:49:18 -0700211 lockref->count++;
212 retval = 1;
213 }
214 spin_unlock(&lockref->lock);
215 return retval;
216}
217EXPORT_SYMBOL(lockref_get_not_dead);