diff options
author | Eric Dumazet <edumazet@google.com> | 2022-11-15 08:53:58 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-11-16 12:48:44 +0000 |
commit | c4794d22251b979b12a6c8e2d3848b662a44fdb6 (patch) | |
tree | 698b6c7d56109d7a1b2b09f5d4041f7c0237ba21 /net/ipv4/ipip.c | |
parent | 2fad1ba354d4a82b1b635a78f25d9682d4febb5e (diff) | |
download | linux-stable-c4794d22251b979b12a6c8e2d3848b662a44fdb6.tar.gz linux-stable-c4794d22251b979b12a6c8e2d3848b662a44fdb6.tar.bz2 linux-stable-c4794d22251b979b12a6c8e2d3848b662a44fdb6.zip |
ipv4: tunnels: use DEV_STATS_INC()
Most of code paths in tunnels are lockless (eg NETIF_F_LLTX in tx).
Adopt SMP safe DEV_STATS_INC() to update dev->stats fields.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipip.c')
-rw-r--r-- | net/ipv4/ipip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c index 180f9daf5bec..abea77759b7e 100644 --- a/net/ipv4/ipip.c +++ b/net/ipv4/ipip.c @@ -310,7 +310,7 @@ static netdev_tx_t ipip_tunnel_xmit(struct sk_buff *skb, tx_error: kfree_skb(skb); - dev->stats.tx_errors++; + DEV_STATS_INC(dev, tx_errors); return NETDEV_TX_OK; } |