]> git.karo-electronics.de Git - linux-beck.git/commitdiff
batman-adv: Delete unnecessary checks before the function call "kfree_skb"
authorMarkus Elfring <elfring@users.sourceforge.net>
Sun, 15 Nov 2015 07:04:43 +0000 (08:04 +0100)
committerAntonio Quartulli <a@unstable.cc>
Sat, 9 Jan 2016 12:56:00 +0000 (20:56 +0800)
The kfree_skb() function tests whether its argument is NULL and then
returns immediately. Thus the test around the calls is not needed.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
Signed-off-by: Antonio Quartulli <a@unstable.cc>
net/batman-adv/main.c
net/batman-adv/network-coding.c
net/batman-adv/send.c

index 95fd418e95673d7f988b312fe11ae3e71cd11c10..5b678f3471fc755ec38209fac4ecce77bd1127e0 100644 (file)
@@ -1184,7 +1184,7 @@ void batadv_tvlv_unicast_send(struct batadv_priv *bat_priv, u8 *src,
                ret = true;
 
 out:
-       if (skb && !ret)
+       if (!ret)
                kfree_skb(skb);
        if (orig_node)
                batadv_orig_node_free_ref(orig_node);
index f5276be2c77c8736ff73e98792312b5e453646e1..c98b0ab85449fd0873864b968abb3c58db9f6617 100644 (file)
@@ -244,9 +244,7 @@ static void batadv_nc_path_free_ref(struct batadv_nc_path *nc_path)
  */
 static void batadv_nc_packet_free(struct batadv_nc_packet *nc_packet)
 {
-       if (nc_packet->skb)
-               kfree_skb(nc_packet->skb);
-
+       kfree_skb(nc_packet->skb);
        batadv_nc_path_free_ref(nc_packet->nc_path);
        kfree(nc_packet);
 }
index f664324805eba5d93cc02b4436429dbf44b7b03d..782fa33ec296a85a2869e40fec9dabc6c89da923 100644 (file)
@@ -407,8 +407,7 @@ void batadv_schedule_bat_ogm(struct batadv_hard_iface *hard_iface)
 
 static void batadv_forw_packet_free(struct batadv_forw_packet *forw_packet)
 {
-       if (forw_packet->skb)
-               kfree_skb(forw_packet->skb);
+       kfree_skb(forw_packet->skb);
        if (forw_packet->if_incoming)
                batadv_hardif_free_ref(forw_packet->if_incoming);
        if (forw_packet->if_outgoing)