Selaa lähdekoodia

Merge tag 'batadv-net-for-davem-20170613' of git://git.open-mesh.org/linux-merge

Simon Wunderlich says:

====================
Here are two batman-adv bugfixes:

 - fix rx packet counters for local ARP replies, by Sven Eckelmann

 - fix memory leaks for unicast packetes received from another gateway
   in bridge loop avoidance, by Andreas Pape
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 8 vuotta sitten
vanhempi
commit
7de84403a2
2 muutettua tiedostoa jossa 4 lisäystä ja 3 poistoa
  1. 3 2
      net/batman-adv/distributed-arp-table.c
  2. 1 1
      net/batman-adv/routing.c

+ 3 - 2
net/batman-adv/distributed-arp-table.c

@@ -1064,8 +1064,9 @@ bool batadv_dat_snoop_outgoing_arp_request(struct batadv_priv *bat_priv,
 
 
 		skb_new->protocol = eth_type_trans(skb_new, soft_iface);
 		skb_new->protocol = eth_type_trans(skb_new, soft_iface);
 
 
-		soft_iface->stats.rx_packets++;
-		soft_iface->stats.rx_bytes += skb->len + ETH_HLEN + hdr_size;
+		batadv_inc_counter(bat_priv, BATADV_CNT_RX);
+		batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
+				   skb->len + ETH_HLEN + hdr_size);
 
 
 		netif_rx(skb_new);
 		netif_rx(skb_new);
 		batadv_dbg(BATADV_DBG_DAT, bat_priv, "ARP request replied locally\n");
 		batadv_dbg(BATADV_DBG_DAT, bat_priv, "ARP request replied locally\n");

+ 1 - 1
net/batman-adv/routing.c

@@ -987,7 +987,7 @@ int batadv_recv_unicast_packet(struct sk_buff *skb,
 				batadv_dbg(BATADV_DBG_BLA, bat_priv,
 				batadv_dbg(BATADV_DBG_BLA, bat_priv,
 					   "recv_unicast_packet(): Dropped unicast pkt received from another backbone gw %pM.\n",
 					   "recv_unicast_packet(): Dropped unicast pkt received from another backbone gw %pM.\n",
 					   orig_addr_gw);
 					   orig_addr_gw);
-				return NET_RX_DROP;
+				goto free_skb;
 			}
 			}
 		}
 		}