]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
batman-adv: Remove variable deprecated by skb_put_data
authorSven Eckelmann <sven@narfation.org>
Sun, 18 Jun 2017 07:59:28 +0000 (09:59 +0200)
committerSimon Wunderlich <sw@simonwunderlich.de>
Sat, 29 Jul 2017 07:51:27 +0000 (09:51 +0200)
skb_put_data makes it unnecessary to store the skb_put return value to copy
some data to the packet. The returned pointer of skb_put_data should
therefore not stored by functions which previously only used it to copy
some data.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/bat_iv_ogm.c
net/batman-adv/bat_v_ogm.c

index c27001d38574fe532de4641b86fb34e8551452f2..83ba5483455a334dc559626c8e1682fe9f357fa7 100644 (file)
@@ -729,11 +729,9 @@ static void batadv_iv_ogm_aggregate(struct batadv_forw_packet *forw_packet_aggr,
                                    const unsigned char *packet_buff,
                                    int packet_len, bool direct_link)
 {
-       unsigned char *skb_buff;
        unsigned long new_direct_link_flag;
 
-       skb_buff = skb_put_data(forw_packet_aggr->skb, packet_buff,
-                               packet_len);
+       skb_put_data(forw_packet_aggr->skb, packet_buff, packet_len);
        forw_packet_aggr->packet_len += packet_len;
        forw_packet_aggr->num_packets++;
 
index 1e3dc374bfde960bde0731ad1acc26fc2cbe482d..894c96371e41c5fb8578ce5f09ecd9ee7d1ec97d 100644 (file)
@@ -137,7 +137,7 @@ static void batadv_v_ogm_send(struct work_struct *work)
        struct batadv_priv *bat_priv;
        struct batadv_ogm2_packet *ogm_packet;
        struct sk_buff *skb, *skb_tmp;
-       unsigned char *ogm_buff, *pkt_buff;
+       unsigned char *ogm_buff;
        int ogm_buff_len;
        u16 tvlv_len = 0;
        int ret;
@@ -166,7 +166,7 @@ static void batadv_v_ogm_send(struct work_struct *work)
                goto reschedule;
 
        skb_reserve(skb, ETH_HLEN);
-       pkt_buff = skb_put_data(skb, ogm_buff, ogm_buff_len);
+       skb_put_data(skb, ogm_buff, ogm_buff_len);
 
        ogm_packet = (struct batadv_ogm2_packet *)skb->data;
        ogm_packet->seqno = htonl(atomic_read(&bat_priv->bat_v.ogm_seqno));