net: vxlan: replace VXLAN_INVALID_HDR with VNI_NOT_FOUND
JIRA: https://issues.redhat.com/browse/RHEL-68063 Upstream Status: net-next.git commit eb4f99c56ad30cb0f8c8e93a78b1200f5987e41e Author: Menglong Dong <menglong8.dong@gmail.com> Date: Tue Oct 15 16:28:30 2024 +0800 net: vxlan: replace VXLAN_INVALID_HDR with VNI_NOT_FOUND Replace the drop reason "SKB_DROP_REASON_VXLAN_INVALID_HDR" with "SKB_DROP_REASON_VXLAN_VNI_NOT_FOUND" in encap_bypass_if_local(), as the latter is more accurate. Fixes: 790961d88b0e ("net: vxlan: use kfree_skb_reason() in encap_bypass_if_local()") Signed-off-by: Menglong Dong <dongml2@chinatelecom.cn> Reviewed-by: Ido Schimmel <idosch@nvidia.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Antoine Tenart <atenart@redhat.com>
This commit is contained in:
parent
3217b16116
commit
2bca16cb90
|
@ -2336,7 +2336,7 @@ static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
|
|||
DEV_STATS_INC(dev, tx_errors);
|
||||
vxlan_vnifilter_count(vxlan, vni, NULL,
|
||||
VXLAN_VNI_STATS_TX_ERRORS, 0);
|
||||
kfree_skb_reason(skb, SKB_DROP_REASON_VXLAN_INVALID_HDR);
|
||||
kfree_skb_reason(skb, SKB_DROP_REASON_VXLAN_VNI_NOT_FOUND);
|
||||
|
||||
return -ENOENT;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue