diff options
Diffstat (limited to 'lib/refcount.c')
-rw-r--r-- | lib/refcount.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/refcount.c b/lib/refcount.c index f42124ccf295..9f906783987e 100644 --- a/lib/refcount.c +++ b/lib/refcount.c | |||
@@ -76,7 +76,7 @@ bool refcount_add_not_zero(unsigned int i, refcount_t *r) | |||
76 | 76 | ||
77 | return true; | 77 | return true; |
78 | } | 78 | } |
79 | EXPORT_SYMBOL_GPL(refcount_add_not_zero); | 79 | EXPORT_SYMBOL(refcount_add_not_zero); |
80 | 80 | ||
81 | /** | 81 | /** |
82 | * refcount_add - add a value to a refcount | 82 | * refcount_add - add a value to a refcount |
@@ -98,7 +98,7 @@ void refcount_add(unsigned int i, refcount_t *r) | |||
98 | { | 98 | { |
99 | WARN_ONCE(!refcount_add_not_zero(i, r), "refcount_t: addition on 0; use-after-free.\n"); | 99 | WARN_ONCE(!refcount_add_not_zero(i, r), "refcount_t: addition on 0; use-after-free.\n"); |
100 | } | 100 | } |
101 | EXPORT_SYMBOL_GPL(refcount_add); | 101 | EXPORT_SYMBOL(refcount_add); |
102 | 102 | ||
103 | /** | 103 | /** |
104 | * refcount_inc_not_zero - increment a refcount unless it is 0 | 104 | * refcount_inc_not_zero - increment a refcount unless it is 0 |
@@ -131,7 +131,7 @@ bool refcount_inc_not_zero(refcount_t *r) | |||
131 | 131 | ||
132 | return true; | 132 | return true; |
133 | } | 133 | } |
134 | EXPORT_SYMBOL_GPL(refcount_inc_not_zero); | 134 | EXPORT_SYMBOL(refcount_inc_not_zero); |
135 | 135 | ||
136 | /** | 136 | /** |
137 | * refcount_inc - increment a refcount | 137 | * refcount_inc - increment a refcount |
@@ -149,7 +149,7 @@ void refcount_inc(refcount_t *r) | |||
149 | { | 149 | { |
150 | WARN_ONCE(!refcount_inc_not_zero(r), "refcount_t: increment on 0; use-after-free.\n"); | 150 | WARN_ONCE(!refcount_inc_not_zero(r), "refcount_t: increment on 0; use-after-free.\n"); |
151 | } | 151 | } |
152 | EXPORT_SYMBOL_GPL(refcount_inc); | 152 | EXPORT_SYMBOL(refcount_inc); |
153 | 153 | ||
154 | /** | 154 | /** |
155 | * refcount_sub_and_test - subtract from a refcount and test if it is 0 | 155 | * refcount_sub_and_test - subtract from a refcount and test if it is 0 |
@@ -189,7 +189,7 @@ bool refcount_sub_and_test(unsigned int i, refcount_t *r) | |||
189 | 189 | ||
190 | return !new; | 190 | return !new; |
191 | } | 191 | } |
192 | EXPORT_SYMBOL_GPL(refcount_sub_and_test); | 192 | EXPORT_SYMBOL(refcount_sub_and_test); |
193 | 193 | ||
194 | /** | 194 | /** |
195 | * refcount_dec_and_test - decrement a refcount and test if it is 0 | 195 | * refcount_dec_and_test - decrement a refcount and test if it is 0 |
@@ -208,7 +208,7 @@ bool refcount_dec_and_test(refcount_t *r) | |||
208 | { | 208 | { |
209 | return refcount_sub_and_test(1, r); | 209 | return refcount_sub_and_test(1, r); |
210 | } | 210 | } |
211 | EXPORT_SYMBOL_GPL(refcount_dec_and_test); | 211 | EXPORT_SYMBOL(refcount_dec_and_test); |
212 | 212 | ||
213 | /** | 213 | /** |
214 | * refcount_dec - decrement a refcount | 214 | * refcount_dec - decrement a refcount |
@@ -224,7 +224,7 @@ void refcount_dec(refcount_t *r) | |||
224 | { | 224 | { |
225 | WARN_ONCE(refcount_dec_and_test(r), "refcount_t: decrement hit 0; leaking memory.\n"); | 225 | WARN_ONCE(refcount_dec_and_test(r), "refcount_t: decrement hit 0; leaking memory.\n"); |
226 | } | 226 | } |
227 | EXPORT_SYMBOL_GPL(refcount_dec); | 227 | EXPORT_SYMBOL(refcount_dec); |
228 | 228 | ||
229 | /** | 229 | /** |
230 | * refcount_dec_if_one - decrement a refcount if it is 1 | 230 | * refcount_dec_if_one - decrement a refcount if it is 1 |
@@ -248,7 +248,7 @@ bool refcount_dec_if_one(refcount_t *r) | |||
248 | 248 | ||
249 | return atomic_try_cmpxchg_release(&r->refs, &val, 0); | 249 | return atomic_try_cmpxchg_release(&r->refs, &val, 0); |
250 | } | 250 | } |
251 | EXPORT_SYMBOL_GPL(refcount_dec_if_one); | 251 | EXPORT_SYMBOL(refcount_dec_if_one); |
252 | 252 | ||
253 | /** | 253 | /** |
254 | * refcount_dec_not_one - decrement a refcount if it is not 1 | 254 | * refcount_dec_not_one - decrement a refcount if it is not 1 |
@@ -282,7 +282,7 @@ bool refcount_dec_not_one(refcount_t *r) | |||
282 | 282 | ||
283 | return true; | 283 | return true; |
284 | } | 284 | } |
285 | EXPORT_SYMBOL_GPL(refcount_dec_not_one); | 285 | EXPORT_SYMBOL(refcount_dec_not_one); |
286 | 286 | ||
287 | /** | 287 | /** |
288 | * refcount_dec_and_mutex_lock - return holding mutex if able to decrement | 288 | * refcount_dec_and_mutex_lock - return holding mutex if able to decrement |
@@ -313,7 +313,7 @@ bool refcount_dec_and_mutex_lock(refcount_t *r, struct mutex *lock) | |||
313 | 313 | ||
314 | return true; | 314 | return true; |
315 | } | 315 | } |
316 | EXPORT_SYMBOL_GPL(refcount_dec_and_mutex_lock); | 316 | EXPORT_SYMBOL(refcount_dec_and_mutex_lock); |
317 | 317 | ||
318 | /** | 318 | /** |
319 | * refcount_dec_and_lock - return holding spinlock if able to decrement | 319 | * refcount_dec_and_lock - return holding spinlock if able to decrement |
@@ -344,5 +344,5 @@ bool refcount_dec_and_lock(refcount_t *r, spinlock_t *lock) | |||
344 | 344 | ||
345 | return true; | 345 | return true; |
346 | } | 346 | } |
347 | EXPORT_SYMBOL_GPL(refcount_dec_and_lock); | 347 | EXPORT_SYMBOL(refcount_dec_and_lock); |
348 | 348 | ||