diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2018-03-29 08:07:46 +0100 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2018-04-12 09:41:19 -0700 |
commit | 450b1f6f56350c630e795f240dc5a77aa8aa2419 (patch) | |
tree | d6809eb52cf4317836ddc5e51f582a72bb2a9c9a /lib/lockref.c | |
parent | e241e3f2bf975788a1b70dff2eb5180ca395b28e (diff) | |
download | linux-450b1f6f56350c630e795f240dc5a77aa8aa2419.tar.gz linux-450b1f6f56350c630e795f240dc5a77aa8aa2419.tar.bz2 linux-450b1f6f56350c630e795f240dc5a77aa8aa2419.zip |
lockref: Add lockref_put_not_zero
Put a lockref unless the lockref is dead or its count would become zero.
This is the same as lockref_put_or_lock except that the lock is never
left held.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'lib/lockref.c')
-rw-r--r-- | lib/lockref.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/lockref.c b/lib/lockref.c index 47169ed7e964..3d468b53d4c9 100644 --- a/lib/lockref.c +++ b/lib/lockref.c @@ -81,6 +81,34 @@ int lockref_get_not_zero(struct lockref *lockref) EXPORT_SYMBOL(lockref_get_not_zero); /** + * lockref_put_not_zero - Decrements count unless count <= 1 before decrement + * @lockref: pointer to lockref structure + * Return: 1 if count updated successfully or 0 if count would become zero + */ +int lockref_put_not_zero(struct lockref *lockref) +{ + int retval; + + CMPXCHG_LOOP( + new.count--; + if (old.count <= 1) + return 0; + , + return 1; + ); + + spin_lock(&lockref->lock); + retval = 0; + if (lockref->count > 1) { + lockref->count--; + retval = 1; + } + spin_unlock(&lockref->lock); + return retval; +} +EXPORT_SYMBOL(lockref_put_not_zero); + +/** * lockref_get_or_lock - Increments count unless the count is 0 or dead * @lockref: pointer to lockref structure * Return: 1 if count updated successfully or 0 if count was zero |