Rehome missing ovs constants into neutron-lib

Recently in Neutron's ovs constants file there were new constants added:

LOCAL_EGRESS_TABLE
LOCAL_IP_TABLE
PACKET_RATE_LIMIT

This patch rehomes them into the neutron-lib repo.

Change-Id: I16f561f88f6fea77f701ba744f78d9659e67bb38
This commit is contained in:
Slawek Kaplonski 2022-03-23 16:21:26 +01:00
parent 74d3765407
commit ad835ad991
2 changed files with 14 additions and 0 deletions

View File

@ -59,6 +59,11 @@ ARP_SPOOF_TABLE = 24
# Table for MAC spoof filtering
MAC_SPOOF_TABLE = 25
LOCAL_EGRESS_TABLE = 30
LOCAL_IP_TABLE = 31
# packet rate limit table
PACKET_RATE_LIMIT = 59
# Table to decide whether further filtering is needed
TRANSIENT_TABLE = 60
LOCAL_MAC_DIRECT = 61
@ -97,6 +102,9 @@ INT_BR_ALL_TABLES = (
ARP_SPOOF_TABLE,
MAC_SPOOF_TABLE,
LOCAL_MAC_DIRECT,
LOCAL_EGRESS_TABLE,
LOCAL_IP_TABLE,
PACKET_RATE_LIMIT,
TRANSIENT_TABLE,
TRANSIENT_EGRESS_TABLE,
BASE_EGRESS_TABLE,

View File

@ -0,0 +1,6 @@
---
features:
- |
Constants ``LOCAL_EGRESS_TABLE``, ``LOCAL_IP_TABLE`` and
``PACKET_RATE_LIMIT`` are now available in
``neutron_lib.plugins.ml2.ovs_constants``.