can: rcar_can: do not report txerr and rxerr during bus-off
authorVincent Mailhol <mailhol.vincent@wanadoo.fr>
Tue, 19 Jul 2022 14:35:40 +0000 (23:35 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:23:32 +0000 (14:23 +0200)
[ Upstream commit a37b7245e831a641df360ca41db6a71c023d3746 ]

During bus off, the error count is greater than 255 and can not fit in
a u8.

Fixes: fd1159318e55 ("can: add Renesas R-Car CAN driver")
Link: https://lore.kernel.org/all/20220719143550.3681-3-mailhol.vincent@wanadoo.fr
Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/can/rcar/rcar_can.c

index 8999ec9455ec22bc486f3905d19c1dbe6858335f..945b319de841cf097a49ae1743d7cb08d3ff6edc 100644 (file)
@@ -235,11 +235,8 @@ static void rcar_can_error(struct net_device *ndev)
        if (eifr & (RCAR_CAN_EIFR_EWIF | RCAR_CAN_EIFR_EPIF)) {
                txerr = readb(&priv->regs->tecr);
                rxerr = readb(&priv->regs->recr);
-               if (skb) {
+               if (skb)
                        cf->can_id |= CAN_ERR_CRTL;
-                       cf->data[6] = txerr;
-                       cf->data[7] = rxerr;
-               }
        }
        if (eifr & RCAR_CAN_EIFR_BEIF) {
                int rx_errors = 0, tx_errors = 0;
@@ -339,6 +336,9 @@ static void rcar_can_error(struct net_device *ndev)
                can_bus_off(ndev);
                if (skb)
                        cf->can_id |= CAN_ERR_BUSOFF;
+       } else if (skb) {
+               cf->data[6] = txerr;
+               cf->data[7] = rxerr;
        }
        if (eifr & RCAR_CAN_EIFR_ORIF) {
                netdev_dbg(priv->ndev, "Receive overrun error interrupt\n");