Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: ethoc: Demote packet dropped error message to debug

Spamming the console with: net eth1: packet dropped can happen
fairly frequently if the adapter is busy transmitting, demote the
message to a debug print.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Tobias Klauser <tklauser@distanz.ch>
Acked-by: Thierry Reding <thierry.reding@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Florian Fainelli and committed by
David S. Miller
38b4bc20 b34296a9

+1 -1
+1 -1
drivers/net/ethernet/ethoc.c
··· 576 576 577 577 /* We always handle the dropped packet interrupt */ 578 578 if (pending & INT_MASK_BUSY) { 579 - dev_err(&dev->dev, "packet dropped\n"); 579 + dev_dbg(&dev->dev, "packet dropped\n"); 580 580 dev->stats.rx_dropped++; 581 581 } 582 582