ar71xx: only access device stats in tx handler if packets were processed
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
890e7458b0
commit
31e6016d2e
1 changed files with 3 additions and 3 deletions
|
@ -999,12 +999,12 @@ static int ag71xx_tx_packets(struct ag71xx *ag, bool flush)
|
|||
|
||||
DBG("%s: %d packets sent out\n", ag->dev->name, sent);
|
||||
|
||||
ag->dev->stats.tx_bytes += bytes_compl;
|
||||
ag->dev->stats.tx_packets += sent;
|
||||
|
||||
if (!sent)
|
||||
return 0;
|
||||
|
||||
ag->dev->stats.tx_bytes += bytes_compl;
|
||||
ag->dev->stats.tx_packets += sent;
|
||||
|
||||
netdev_completed_queue(ag->dev, sent, bytes_compl);
|
||||
if ((ring->curr - ring->dirty) < (ring_size * 3) / 4)
|
||||
netif_wake_queue(ag->dev);
|
||||
|
|
Loading…
Reference in a new issue