]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
can: rx-offload: can_rx_offload_offload_one(): increment rx_fifo_errors on queue...
authorMarc Kleine-Budde <mkl@pengutronix.de>
Wed, 9 Oct 2019 13:15:07 +0000 (15:15 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 5 Dec 2019 08:19:42 +0000 (09:19 +0100)
[ Upstream commit 4e9016bee3bf0c24963097edace034ff205b565c ]

If the rx-offload skb_queue is full or the skb allocation fails (due to OOM),
the mailbox contents is discarded.

This patch adds the incrementing of the rx_fifo_errors statistics counter.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/can/rx-offload.c

index e32b65599a5f2b9623b45179be0ddd0a233a391b..16af09c71cfede1692a0762e855dfebb7d8e96d5 100644 (file)
@@ -134,8 +134,10 @@ static struct sk_buff *can_rx_offload_offload_one(struct can_rx_offload *offload
 
                ret = offload->mailbox_read(offload, &cf_overflow,
                                            &timestamp, n);
-               if (ret)
+               if (ret) {
                        offload->dev->stats.rx_dropped++;
+                       offload->dev->stats.rx_fifo_errors++;
+               }
 
                return NULL;
        }