2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 22:35:15 +00:00

ofproto-dpif-xlate: Add a drop action for native tunnel failure.

Upon tunnel output failure, due to routing failure for example, add an
explicit drop action, so it will appear in the dp-flows for better
visibility for that case.
For those, add additional drop reasons.

Reviewed-by: Roi Dayan <roid@nvidia.com>
Signed-off-by: Eli Britstein <elibr@nvidia.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
This commit is contained in:
Eli Britstein
2025-04-14 10:31:05 +03:00
committed by Ilya Maximets
parent a53d67bf93
commit 1015b13f05
4 changed files with 81 additions and 0 deletions

View File

@@ -465,6 +465,10 @@ enum xlate_error {
XLATE_UNSUPPORTED_PACKET_TYPE,
XLATE_CONGESTION_DROP,
XLATE_FORWARDING_DISABLED,
XLATE_TUNNEL_ROUTING_FAILED,
XLATE_TUNNEL_OUTPUT_NO_ETHERNET,
XLATE_TUNNEL_NEIGH_CACHE_MISS,
XLATE_TUNNEL_HEADER_BUILD_FAILED,
XLATE_MAX,
};
#endif