mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
atm: clip: Don't move counters backwards
I don't see the point on substracting the skb len from the netdev stats. Signed-off-by: Jorge Boncompte [DTI2] <jorge@dti2.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fe685b8046
commit
ada22aa563
@ -484,16 +484,8 @@ static int clip_mkip(struct atm_vcc *vcc, int timeout)
|
||||
if (!clip_devs) {
|
||||
atm_return(vcc, skb->truesize);
|
||||
kfree_skb(skb);
|
||||
} else {
|
||||
struct net_device *dev = skb->dev;
|
||||
unsigned int len = skb->len;
|
||||
|
||||
skb_get(skb);
|
||||
} else
|
||||
clip_push(vcc, skb);
|
||||
dev->stats.rx_packets--;
|
||||
dev->stats.rx_bytes -= len;
|
||||
kfree_skb(skb);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user