From afdf1f831c46a68a286f1fa885dc6abe7b79e8fa Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 1 Jul 2014 10:50:57 +0900 Subject: [PATCH] OVS agent: fix a comment on CANARY_TABLE CANARY_TABLE is for br-int, not for br-tun. Grouping it with constants for br-tun tables together is misleading. Move it into a separate section and comment appropriately. No functional changes. Change-Id: Ic1aed992776a87ed77665b712de7ec3bd9dab397 --- neutron/plugins/openvswitch/common/constants.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neutron/plugins/openvswitch/common/constants.py b/neutron/plugins/openvswitch/common/constants.py index da45415ca..9cf6637da 100644 --- a/neutron/plugins/openvswitch/common/constants.py +++ b/neutron/plugins/openvswitch/common/constants.py @@ -45,6 +45,9 @@ LEARN_FROM_TUN = 10 UCAST_TO_TUN = 20 ARP_RESPONDER = 21 FLOOD_TO_TUN = 22 + +# Tables for integration bridge +# Table 0 is used for forwarding. CANARY_TABLE = 23 # Map tunnel types to tables number -- 2.45.2