summaryrefslogtreecommitdiffstats
path: root/net/dsa/dsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/dsa/dsa.c')
-rw-r--r--net/dsa/dsa.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
index a55e2e4087a4..0ba842c08dd3 100644
--- a/net/dsa/dsa.c
+++ b/net/dsa/dsa.c
@@ -190,6 +190,7 @@ static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
190{ 190{
191 struct dsa_switch_tree *dst = dev->dsa_ptr; 191 struct dsa_switch_tree *dst = dev->dsa_ptr;
192 struct sk_buff *nskb = NULL; 192 struct sk_buff *nskb = NULL;
193 struct dsa_slave_priv *p;
193 194
194 if (unlikely(dst == NULL)) { 195 if (unlikely(dst == NULL)) {
195 kfree_skb(skb); 196 kfree_skb(skb);
@@ -207,12 +208,15 @@ static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
207 } 208 }
208 209
209 skb = nskb; 210 skb = nskb;
211 p = netdev_priv(skb->dev);
210 skb_push(skb, ETH_HLEN); 212 skb_push(skb, ETH_HLEN);
211 skb->pkt_type = PACKET_HOST; 213 skb->pkt_type = PACKET_HOST;
212 skb->protocol = eth_type_trans(skb, skb->dev); 214 skb->protocol = eth_type_trans(skb, skb->dev);
213 215
214 skb->dev->stats.rx_packets++; 216 u64_stats_update_begin(&p->stats64.syncp);
215 skb->dev->stats.rx_bytes += skb->len; 217 p->stats64.rx_packets++;
218 p->stats64.rx_bytes += skb->len;
219 u64_stats_update_end(&p->stats64.syncp);
216 220
217 netif_receive_skb(skb); 221 netif_receive_skb(skb);
218 222