summaryrefslogtreecommitdiffstats
path: root/net/batman-adv/types.h
diff options
context:
space:
mode:
authorSven Eckelmann2016-01-16 10:29:52 +0100
committerAntonio Quartulli2016-02-10 16:24:04 +0100
commita6ba0d340db63b95cd07484370cca69929d8f4e4 (patch)
tree0be038234da95452aeeb61a1a6d29bf02d0ff19b /net/batman-adv/types.h
parentbatman-adv: Convert batadv_neigh_ifinfo to kref (diff)
downloadkernel-qcow2-linux-a6ba0d340db63b95cd07484370cca69929d8f4e4.tar.gz
kernel-qcow2-linux-a6ba0d340db63b95cd07484370cca69929d8f4e4.tar.xz
kernel-qcow2-linux-a6ba0d340db63b95cd07484370cca69929d8f4e4.zip
batman-adv: Convert batadv_orig_ifinfo to kref
batman-adv uses a self-written reference implementation which is just based on atomic_t. This is less obvious when reading the code than kref and therefore increases the change that the reference counting will be missed. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch> Signed-off-by: Antonio Quartulli <a@unstable.cc>
Diffstat (limited to 'net/batman-adv/types.h')
-rw-r--r--net/batman-adv/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/types.h b/net/batman-adv/types.h
index 81d9f8d6c54b..6193c01b47d2 100644
--- a/net/batman-adv/types.h
+++ b/net/batman-adv/types.h
@@ -141,7 +141,7 @@ struct batadv_orig_ifinfo {
u32 last_real_seqno;
u8 last_ttl;
unsigned long batman_seqno_reset;
- atomic_t refcount;
+ struct kref refcount;
struct rcu_head rcu;
};