]> git.karo-electronics.de Git - linux-beck.git/commitdiff
batman-adv: Place kref_get for bla_claim near use
authorSven Eckelmann <sven@narfation.org>
Fri, 15 Jul 2016 15:39:24 +0000 (17:39 +0200)
committerSimon Wunderlich <sw@simonwunderlich.de>
Tue, 9 Aug 2016 05:54:48 +0000 (07:54 +0200)
It is hard to understand why the refcnt is increased when it isn't done
near the actual place the new reference is used. So using kref_get right
before the place which requires the reference and in the same function
helps to avoid accidental problems caused by incorrect reference counting.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/bridge_loop_avoidance.c

index 35ed1d32bab5f4a1672e8bc898aa77d7ea7cfda1..b0517a0bc8e7d0de3ab1d3c23db421d81787ec29 100644 (file)
@@ -718,12 +718,13 @@ static void batadv_bla_add_claim(struct batadv_priv *bat_priv,
                claim->lasttime = jiffies;
                kref_get(&backbone_gw->refcount);
                claim->backbone_gw = backbone_gw;
-
                kref_init(&claim->refcount);
-               kref_get(&claim->refcount);
+
                batadv_dbg(BATADV_DBG_BLA, bat_priv,
                           "bla_add_claim(): adding new entry %pM, vid %d to hash ...\n",
                           mac, BATADV_PRINT_VID(vid));
+
+               kref_get(&claim->refcount);
                hash_added = batadv_hash_add(bat_priv->bla.claim_hash,
                                             batadv_compare_claim,
                                             batadv_choose_claim, claim,