]> git.baikalelectronics.ru Git - kernel.git/commit
net: skb: introduce kfree_skb_reason()
authorMenglong Dong <imagedong@tencent.com>
Sun, 9 Jan 2022 06:36:26 +0000 (14:36 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jul 2022 15:25:15 +0000 (17:25 +0200)
commit8147d319f0851d1cdd75285a2f24c93ce875c465
treec9b75b4a0ddb4cabb87811563d3863d849e1316d
parentead0b4b5114e29dcc4fb0f4a631f3f374ed0165e
net: skb: introduce kfree_skb_reason()

[ Upstream commit eecb8bd4399b60061b7ac6c70121530b7ece4241 ]

Introduce the interface kfree_skb_reason(), which is able to pass
the reason why the skb is dropped to 'kfree_skb' tracepoint.

Add the 'reason' field to 'trace_kfree_skb', therefor user can get
more detail information about abnormal skb with 'drop_monitor' or
eBPF.

All drop reasons are defined in the enum 'skb_drop_reason', and
they will be print as string in 'kfree_skb' tracepoint in format
of 'reason: XXX'.

( Maybe the reasons should be defined in a uapi header file, so that
user space can use them? )

Signed-off-by: Menglong Dong <imagedong@tencent.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/linux/skbuff.h
include/trace/events/skb.h
net/core/dev.c
net/core/drop_monitor.c
net/core/skbuff.c