]> www.infradead.org Git - users/dwmw2/linux.git/commit
net/core: Introduce netdev_core_stats_inc()
authorYajun Deng <yajun.deng@linux.dev>
Mon, 9 Oct 2023 11:16:33 +0000 (19:16 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Oct 2023 09:07:40 +0000 (10:07 +0100)
commit5247dbf16cee4e83eb89e4d3b87bd5e79c5d1655
tree28117a9edbd56d6b0ab01a8c24a4cb8c32c2602d
parent0c2d3ff8c4f350da8238b7d453694fe73e9720d6
net/core: Introduce netdev_core_stats_inc()

Although there is a kfree_skb_reason() helper function that can be used to
find the reason why this skb is dropped, but most callers didn't increase
one of rx_dropped, tx_dropped, rx_nohandler and rx_otherhost_dropped.

For the users, people are more concerned about why the dropped in ip
is increasing.

Introduce netdev_core_stats_inc() for trace the caller of
dev_core_stats_*_inc().

Also, add __code to netdev_core_stats_alloc(), as it's called with small
probability. And add noinline make sure netdev_core_stats_inc was never
inlined.

Signed-off-by: Yajun Deng <yajun.deng@linux.dev>
Suggested-by: Alexander Lobakin <aleksander.lobakin@intel.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h
net/core/dev.c