mirror of
https://github.com/torvalds/linux.git
synced 2026-07-31 19:47:08 +02:00
can: mcp251xfd: mcp251xfd_handle_rxovif(): denote RX overflow message to debug + add rate limiting
A RX overflow usually happens during high system load. Printing overflow messages to the kernel log, which on embedded systems often is outputted on the serial console, even increases the system load. To decrease the system load in these situations, denote the messages to debug level and wrap them with net_ratelimit(). Link: https://lore.kernel.org/all/20220105154300.1258636-7-mkl@pengutronix.de Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
d84ca2217b
commit
58d0b0a992
|
|
@ -1652,12 +1652,15 @@ static int mcp251xfd_handle_rxovif(struct mcp251xfd_priv *priv)
|
|||
|
||||
/* If SERRIF is active, there was a RX MAB overflow. */
|
||||
if (priv->regs_status.intf & MCP251XFD_REG_INT_SERRIF) {
|
||||
netdev_info(priv->ndev,
|
||||
"RX-%d: MAB overflow detected.\n",
|
||||
ring->nr);
|
||||
if (net_ratelimit())
|
||||
netdev_dbg(priv->ndev,
|
||||
"RX-%d: MAB overflow detected.\n",
|
||||
ring->nr);
|
||||
} else {
|
||||
netdev_info(priv->ndev,
|
||||
"RX-%d: FIFO overflow.\n", ring->nr);
|
||||
if (net_ratelimit())
|
||||
netdev_dbg(priv->ndev,
|
||||
"RX-%d: FIFO overflow.\n",
|
||||
ring->nr);
|
||||
}
|
||||
|
||||
err = regmap_update_bits(priv->map_reg,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user