|
@@ -1003,6 +1003,7 @@ bool batadv_dat_snoop_outgoing_arp_request(struct batadv_priv *bat_priv,
|
|
|
bool ret = false;
|
|
|
struct batadv_dat_entry *dat_entry = NULL;
|
|
|
struct sk_buff *skb_new;
|
|
|
+ struct net_device *soft_iface = bat_priv->soft_iface;
|
|
|
int hdr_size = 0;
|
|
|
unsigned short vid;
|
|
|
|
|
@@ -1061,10 +1062,10 @@ bool batadv_dat_snoop_outgoing_arp_request(struct batadv_priv *bat_priv,
|
|
|
if (!skb_new)
|
|
|
goto out;
|
|
|
|
|
|
- skb_new->protocol = eth_type_trans(skb_new,
|
|
|
- bat_priv->soft_iface);
|
|
|
- bat_priv->stats.rx_packets++;
|
|
|
- bat_priv->stats.rx_bytes += skb->len + ETH_HLEN + hdr_size;
|
|
|
+ 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;
|
|
|
|
|
|
netif_rx(skb_new);
|
|
|
batadv_dbg(BATADV_DBG_DAT, bat_priv, "ARP request replied locally\n");
|