public inbox for linux-can@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] can: m_can: reset IR_RF0L in message reception loop
@ 2021-03-01 21:21 Mariusz Madej
  2021-03-03  8:08 ` Torin Cooper-Bennun
  0 siblings, 1 reply; 4+ messages in thread
From: Mariusz Madej @ 2021-03-01 21:21 UTC (permalink / raw)
  To: linux-can@vger.kernel.org; +Cc: Wolfgang Grandegger, Marc Kleine-Budde

Message lost warning is reported in loop without interrupt reset. Besides
redundant log messages it may lead to serious performance problem, where
fifo gets full faster than next reception is scheduled by NAPI. This
patch fixes it.

Signed-off-by: Mariusz Madej <mariusz.madej@xtrack.com>
---
  drivers/net/can/m_can/m_can.c | 4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/net/can/m_can/m_can.c b/drivers/net/can/m_can/m_can.c
index 3752520a7..bd5539435 100644
--- a/drivers/net/can/m_can/m_can.c
+++ b/drivers/net/can/m_can/m_can.c
@@ -501,8 +501,10 @@ static int m_can_do_rx_poll(struct net_device *dev, int quota)
  	}
  
  	while ((rxfs & RXFS_FFL_MASK) && (quota > 0)) {
-		if (rxfs & RXFS_RFL)
+		if (rxfs & RXFS_RFL) {
  			netdev_warn(dev, "Rx FIFO 0 Message Lost\n");
+			m_can_write(cdev, M_CAN_IR, IR_RF0L);	
+		}
  
  		m_can_read_fifo(dev, rxfs);
  
-- 
2.20.1


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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-01 21:21 [PATCH] can: m_can: reset IR_RF0L in message reception loop Mariusz Madej
2021-03-03  8:08 ` Torin Cooper-Bennun
2021-03-03  8:31   ` Marc Kleine-Budde
2021-03-03 10:20     ` Torin Cooper-Bennun

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