forked from Minki/linux
net: mv643xx_eth: Be drop monitor friendly
txq_reclaim() does the normal transmit queue reclamation and rxq_deinit() does the RX ring cleanup, none of these are packet drops, so use dev_consume_skb() for both locations. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1e9d8e7ad3
commit
43cee2d246
@ -1121,7 +1121,7 @@ static int txq_reclaim(struct tx_queue *txq, int budget, int force)
|
|||||||
struct sk_buff *skb = __skb_dequeue(&txq->tx_skb);
|
struct sk_buff *skb = __skb_dequeue(&txq->tx_skb);
|
||||||
|
|
||||||
if (!WARN_ON(!skb))
|
if (!WARN_ON(!skb))
|
||||||
dev_kfree_skb(skb);
|
dev_consume_skb_any(skb);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cmd_sts & ERROR_SUMMARY) {
|
if (cmd_sts & ERROR_SUMMARY) {
|
||||||
@ -2024,7 +2024,7 @@ static void rxq_deinit(struct rx_queue *rxq)
|
|||||||
|
|
||||||
for (i = 0; i < rxq->rx_ring_size; i++) {
|
for (i = 0; i < rxq->rx_ring_size; i++) {
|
||||||
if (rxq->rx_skb[i]) {
|
if (rxq->rx_skb[i]) {
|
||||||
dev_kfree_skb(rxq->rx_skb[i]);
|
dev_consume_skb_any(rxq->rx_skb[i]);
|
||||||
rxq->rx_desc_count--;
|
rxq->rx_desc_count--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user