diff options
author | Adrian Moreno <amorenoz@redhat.com> | 2023-08-11 16:12:52 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-14 09:01:06 +0200 |
commit | 43d95b30cf5793cdd3c7b1c1cd5fead9b469bd60 (patch) | |
tree | 6dbc543220e3f569cc6150d328da4269f0527236 /net/openvswitch/drop.h | |
parent | net: openvswitch: add meter drop reason (diff) | |
download | linux-43d95b30cf5793cdd3c7b1c1cd5fead9b469bd60.tar.xz linux-43d95b30cf5793cdd3c7b1c1cd5fead9b469bd60.zip |
net: openvswitch: add misc error drop reasons
Use drop reasons from include/net/dropreason-core.h when a reasonable
candidate exists.
Acked-by: Aaron Conole <aconole@redhat.com>
Signed-off-by: Adrian Moreno <amorenoz@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | net/openvswitch/drop.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/openvswitch/drop.h b/net/openvswitch/drop.h index a35e63d71094..cedf9b7b5796 100644 --- a/net/openvswitch/drop.h +++ b/net/openvswitch/drop.h @@ -14,6 +14,12 @@ R(OVS_DROP_EXPLICIT) \ R(OVS_DROP_EXPLICIT_WITH_ERROR) \ R(OVS_DROP_METER) \ + R(OVS_DROP_RECURSION_LIMIT) \ + R(OVS_DROP_DEFERRED_LIMIT) \ + R(OVS_DROP_FRAG_L2_TOO_LONG) \ + R(OVS_DROP_FRAG_INVALID_PROTO) \ + R(OVS_DROP_CONNTRACK) \ + R(OVS_DROP_IP_TTL) \ /* deliberate comment for trailing \ */ enum ovs_drop_reason { |