diff options
author | Adrian Moreno <amorenoz@redhat.com> | 2023-08-11 17:12:51 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-14 10:01:06 +0300 |
commit | f329d1bc1a4580e0f8a402b14a6fd024ec8e5c7b (patch) | |
tree | 75d4268875f81e0d1bf7d38aa16f08a612ebaaf9 /net/openvswitch/drop.h | |
parent | e7bc7db9ba463e763ac6113279cade19da9cb939 (diff) | |
download | linux-f329d1bc1a4580e0f8a402b14a6fd024ec8e5c7b.tar.xz |
net: openvswitch: add meter drop reason
By using an independent drop reason it makes it easy to distinguish
between QoS-triggered or flow-triggered drop.
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 22e66d28c0ca..a35e63d71094 100644 --- a/net/openvswitch/drop.h +++ b/net/openvswitch/drop.h @@ -13,6 +13,7 @@ R(OVS_DROP_ACTION_ERROR) \ R(OVS_DROP_EXPLICIT) \ R(OVS_DROP_EXPLICIT_WITH_ERROR) \ + R(OVS_DROP_METER) \ /* deliberate comment for trailing \ */ enum ovs_drop_reason { |