diff options
author | Menglong Dong <menglong8.dong@gmail.com> | 2024-11-07 20:56:00 +0800 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2024-11-12 11:24:51 +0100 |
commit | d9340d1e02779dbf83d53b0deb4068c7768b8261 (patch) | |
tree | 30ad99e103657550e5da6d90bcc254b102c52f49 /include/net | |
parent | 50038bf38e6577a15d52b890d82c197cf3b163a0 (diff) | |
download | lwn-d9340d1e02779dbf83d53b0deb4068c7768b8261.tar.gz lwn-d9340d1e02779dbf83d53b0deb4068c7768b8261.zip |
net: ip: make ip_mkroute_input/__mkroute_input return drop reasons
In this commit, we make ip_mkroute_input() and __mkroute_input() return
drop reasons.
The drop reason "SKB_DROP_REASON_ARP_PVLAN_DISABLE" is introduced for
the case: the packet which is not IP is forwarded to the in_dev, and
the proxy_arp_pvlan is not enabled.
Signed-off-by: Menglong Dong <dongml2@chinatelecom.cn>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/dropreason-core.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/net/dropreason-core.h b/include/net/dropreason-core.h index 74624d369d48..6c5a1ea209a2 100644 --- a/include/net/dropreason-core.h +++ b/include/net/dropreason-core.h @@ -104,6 +104,7 @@ FN(IP_TUNNEL_ECN) \ FN(TUNNEL_TXINFO) \ FN(LOCAL_MAC) \ + FN(ARP_PVLAN_DISABLE) \ FNe(MAX) /** @@ -478,6 +479,12 @@ enum skb_drop_reason { */ SKB_DROP_REASON_LOCAL_MAC, /** + * @SKB_DROP_REASON_ARP_PVLAN_DISABLE: packet which is not IP is + * forwarded to the in_dev, and the proxy_arp_pvlan is not + * enabled. + */ + SKB_DROP_REASON_ARP_PVLAN_DISABLE, + /** * @SKB_DROP_REASON_MAX: the maximum of core drop reasons, which * shouldn't be used as a real 'reason' - only for tracing code gen */ |