]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: vxlan: use kfree_skb_reason() in vxlan_encap_bypass()
authorMenglong Dong <menglong8.dong@gmail.com>
Wed, 9 Oct 2024 02:28:29 +0000 (10:28 +0800)
committerDavid S. Miller <davem@davemloft.net>
Sun, 13 Oct 2024 10:33:09 +0000 (11:33 +0100)
Replace kfree_skb with kfree_skb_reason in vxlan_encap_bypass, and no new
skb drop reason is added in this commit.

Signed-off-by: Menglong Dong <dongml2@chinatelecom.cn>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/vxlan/vxlan_core.c

index e82f2e30bd39981c311a4781b7f895345cb18502..2b0f00f92eae3d7af175baaa9e53c0a679e1e6d7 100644 (file)
@@ -2290,7 +2290,7 @@ static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
        rcu_read_lock();
        dev = skb->dev;
        if (unlikely(!(dev->flags & IFF_UP))) {
-               kfree_skb(skb);
+               kfree_skb_reason(skb, SKB_DROP_REASON_DEV_READY);
                goto drop;
        }