public inbox for linux-can@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] can: m_can: m_can_do_rx_poll(): fix extraneous msg loss warning
@ 2021-03-03 10:31 Torin Cooper-Bennun
  2021-03-04 13:22 ` Marc Kleine-Budde
  0 siblings, 1 reply; 2+ messages in thread
From: Torin Cooper-Bennun @ 2021-03-03 10:31 UTC (permalink / raw)
  To: linux-can; +Cc: mkl, Torin Cooper-Bennun, Mariusz Madej

Message loss from RX FIFO 0 is already handled in m_can_handle_lost_msg,
with netdev output included.

Removing this warning also improves driver performance under heavy load,
where m_can_do_rx_poll may be called many times before this interrupt is
cleared, causing this message to be output many times (thanks Mariusz
Madej for this report).

Cc: Mariusz Madej <mariusz.madej@xtrack.com>
Signed-off-by: Torin Cooper-Bennun <torin@maxiluxsystems.com>
---
 drivers/net/can/m_can/m_can.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/net/can/m_can/m_can.c b/drivers/net/can/m_can/m_can.c
index 3752520a7d4b..d783c46cac16 100644
--- a/drivers/net/can/m_can/m_can.c
+++ b/drivers/net/can/m_can/m_can.c
@@ -501,9 +501,6 @@ static int m_can_do_rx_poll(struct net_device *dev, int quota)
 	}
 
 	while ((rxfs & RXFS_FFL_MASK) && (quota > 0)) {
-		if (rxfs & RXFS_RFL)
-			netdev_warn(dev, "Rx FIFO 0 Message Lost\n");
-
 		m_can_read_fifo(dev, rxfs);
 
 		quota--;
-- 
2.30.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-03-04 13:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-03 10:31 [PATCH] can: m_can: m_can_do_rx_poll(): fix extraneous msg loss warning Torin Cooper-Bennun
2021-03-04 13:22 ` Marc Kleine-Budde

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox