Re: [PATCH net-next] tg3: Be drop monitor friendly

2017-08-24 Thread Florian Fainelli
On 08/24/2017 05:04 PM, Michael Chan wrote: > On Thu, Aug 24, 2017 at 4:25 PM, Florian Fainelli > wrote: >> >> tg3_tx() does the normal packet TX completion, >> tigon3_dma_hwbug_workaround() needs to allocate a new SKB that is >> suitable for the DMA hardware bug, and

[PATCH net-next] tg3: Be drop monitor friendly

2017-08-24 Thread Florian Fainelli
tg3_tx() does the normal packet TX completion, tigon3_dma_hwbug_workaround() needs to allocate a new SKB that is suitable for the DMA hardware bug, and finally tg3_free_rings() is doing ring cleanup. Use dev_consume_skb_any() for these 3 locations to be SKB drop monitor friendly. Signed-off-by: Fl