@@ -68,27 +68,19 @@ static inline int kref_put(struct kref *kref, void (*release)(struct kref *kref)
return 0;
}
-static inline int kref_put_mutex(struct kref *kref,
- void (*release)(struct kref *kref),
- struct mutex *lock)
+static inline bool raw_kref_put_mutex(struct kref *kref, struct mutex *lock)
{
- if (refcount_dec_and_mutex_lock(&kref->refcount, lock)) {
- release(kref);
- return 1;
- }
- return 0;
+ return refcount_dec_and_mutex_lock(&kref->refcount, lock);
}
+#define kref_put_mutex(kref, release, lock) \
+ ((raw_kref_put_mutex(kref, lock)) ? ({ release(kref); 1; }) : 0)
-static inline int kref_put_lock(struct kref *kref,
- void (*release)(struct kref *kref),
- spinlock_t *lock)
+static inline bool raw_kref_put_lock(struct kref *kref, spinlock_t *lock)
{
- if (refcount_dec_and_lock(&kref->refcount, lock)) {
- release(kref);
- return 1;
- }
- return 0;
+ return refcount_dec_and_lock(&kref->refcount, lock);
}
+#define kref_put_lock(kref, release, lock) \
+ ((raw_kref_put_lock(kref, lock)) ? ({ release(kref); 1; }) : 0)
/**
* kref_get_unless_zero - Increment refcount for object unless it is zero.
This patch moves the release callback call to the caller of kref_put_lock() functionality. Since refcount_dec_and_lock() uses __cond_lock() we get the following warning for e.g. net/sunrpc/svcauth.c: warning: context imbalance in 'auth_domain_put' - wrong count at exit The warning occurs now because it seems that before __cond_lock() change sparse was able to detect the correct locking behaviour. Now it thinks there is an additional lock acquire. However the __cond_lock() instrumentation in refcount_dec_and_lock() was making it possible to avoid sparse warnings by evaluating the return value and unlock the lock if conditional necessary. This patch solves the problem by just do the passed release callback call based by the return value of kref_put_lock() and not inside of kref_put_lock() and evaluating the return value of refcount_dec_and_lock() that surprisingly sparse can recognize. It seems it's only possible to have the one way or the other. This patch changes the kref_put_lock() in way that it works like refcount_dec_and_lock() way with __cond_lock(). Signed-off-by: Alexander Aring <aahringo@redhat.com> --- include/linux/kref.h | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-)