]> git.itanic.dy.fi Git - linux-stable/commitdiff
can: gs_usb: gs_usb_receive_bulk_callback(): make use of stats
authorMarc Kleine-Budde <mkl@pengutronix.de>
Mon, 3 Jul 2023 18:39:19 +0000 (20:39 +0200)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Fri, 28 Jul 2023 06:52:03 +0000 (08:52 +0200)
Make use the previously assigned variable stats instead of using
netdev->stats.

Link: https://lore.kernel.org/all/20230718-gs_usb-cleanups-v1-6-c3b9154ec605@pengutronix.de
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/usb/gs_usb.c

index 04cbe949c29062adfe2b598cb2800d3d77229b04..0d0a3405ba19866f4468784ce754b95799d6739a 100644 (file)
@@ -594,8 +594,8 @@ static void gs_usb_receive_bulk_callback(struct urb *urb)
 
                gs_usb_set_timestamp(dev, skb, hf);
 
-               netdev->stats.rx_packets++;
-               netdev->stats.rx_bytes += hf->can_dlc;
+               stats->rx_packets++;
+               stats->rx_bytes += hf->can_dlc;
 
                netif_rx(skb);
        } else { /* echo_id == hf->echo_id */
@@ -619,9 +619,9 @@ static void gs_usb_receive_bulk_callback(struct urb *urb)
                skb = dev->can.echo_skb[hf->echo_id];
                gs_usb_set_timestamp(dev, skb, hf);
 
-               netdev->stats.tx_packets++;
-               netdev->stats.tx_bytes += can_get_echo_skb(netdev, hf->echo_id,
-                                                          NULL);
+               stats->tx_packets++;
+               stats->tx_bytes += can_get_echo_skb(netdev, hf->echo_id,
+                                                   NULL);
 
                gs_free_tx_context(txc);