Skip to content

Commit

Permalink
net: vxlan: use kfree_skb_reason() in vxlan_mdb_xmit()
Browse files Browse the repository at this point in the history
Replace kfree_skb() with kfree_skb_reason() in vxlan_mdb_xmit. No drop
reasons are introduced 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>
  • Loading branch information
Menglong Dong authored and David S. Miller committed Oct 13, 2024
1 parent e7c700a commit 03483db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/vxlan/vxlan_mdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,7 @@ netdev_tx_t vxlan_mdb_xmit(struct vxlan_dev *vxlan,
vxlan_xmit_one(skb, vxlan->dev, src_vni,
rcu_dereference(fremote->rd), false);
else
kfree_skb(skb);
kfree_skb_reason(skb, SKB_DROP_REASON_VXLAN_NO_REMOTE);

return NETDEV_TX_OK;
}
Expand Down

0 comments on commit 03483db

Please sign in to comment.