From: Hauke Mehrtens Date: Wed, 28 Nov 2012 22:57:39 +0000 (+0100) Subject: compat: add kref_get_unless_zero() X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=2fdcdb11c804b2176a5a743b4421b1b3d3709ec3;p=openwrt%2Fstaging%2Fblogic.git compat: add kref_get_unless_zero() Signed-off-by: Hauke Mehrtens Signed-off-by: Luis R. Rodriguez --- diff --git a/include/linux/compat-2.6.h b/include/linux/compat-2.6.h index f26489c30820..00a5edaac2d8 100644 --- a/include/linux/compat-2.6.h +++ b/include/linux/compat-2.6.h @@ -66,5 +66,6 @@ void compat_dependency_symbol(void); #include #include #include +#include #endif /* LINUX_26_COMPAT_H */ diff --git a/include/linux/compat-3.8.h b/include/linux/compat-3.8.h new file mode 100644 index 000000000000..e451c5152e9f --- /dev/null +++ b/include/linux/compat-3.8.h @@ -0,0 +1,38 @@ +#ifndef LINUX_3_8_COMPAT_H +#define LINUX_3_8_COMPAT_H + +#include + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0)) + +/* This backports: + * + * commit 4b20db3de8dab005b07c74161cb041db8c5ff3a7 + * Author: Thomas Hellstrom + * Date: Tue Nov 6 11:31:49 2012 +0000 + * + * kref: Implement kref_get_unless_zero v3 + */ +/** + * kref_get_unless_zero - Increment refcount for object unless it is zero. + * @kref: object. + * + * Return non-zero if the increment succeeded. Otherwise return 0. + * + * This function is intended to simplify locking around refcounting for + * objects that can be looked up from a lookup structure, and which are + * removed from that lookup structure in the object destructor. + * Operations on such objects require at least a read lock around + * lookup + kref_get, and a write lock around kref_put + remove from lookup + * structure. Furthermore, RCU implementations become extremely tricky. + * With a lookup followed by a kref_get_unless_zero *with return value check* + * locking in the kref_put path can be deferred to the actual removal from + * the lookup structure and RCU lookups become trivial. + */ +static inline int __must_check kref_get_unless_zero(struct kref *kref) +{ + return atomic_add_unless(&kref->refcount, 1, 0); +} +#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0)) */ + +#endif /* LINUX_3_8_COMPAT_H */