diff options
author | Adrian Moreno <amorenoz@redhat.com> | 2023-08-11 17:12:49 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-14 10:01:06 +0300 |
commit | ec7bfb5e5a054f1178e8bdbf4f145fdafa5bf804 (patch) | |
tree | ae5326d34627698099ccf8887437ba49a0ae53f9 /net/openvswitch/drop.h | |
parent | 9d802da40b7c820deb9c60fc394457ea565cafc8 (diff) | |
download | linux-ec7bfb5e5a054f1178e8bdbf4f145fdafa5bf804.tar.xz |
net: openvswitch: add action error drop reason
Add a drop reason for packets that are dropped because an action
returns a non-zero error code.
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 'net/openvswitch/drop.h')
-rw-r--r-- | net/openvswitch/drop.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/openvswitch/drop.h b/net/openvswitch/drop.h index a5b2b901249b..b87613ced713 100644 --- a/net/openvswitch/drop.h +++ b/net/openvswitch/drop.h @@ -10,6 +10,7 @@ #define OVS_DROP_REASONS(R) \ R(OVS_DROP_LAST_ACTION) \ + R(OVS_DROP_ACTION_ERROR) \ /* deliberate comment for trailing \ */ enum ovs_drop_reason { |