diff mbox series

[ovs-dev,ovn,1/6] northd: Fix table ID for IPv6 router ingress.

Message ID 20191030013138.9390-2-russell@ovn.org
State Superseded
Headers show
Series Add IPv6 NAT support | expand

Commit Message

Russell Bryant Oct. 30, 2019, 1:31 a.m. UTC
I noticed that this table number was outdated.  This is now table 3.
There are a few other sections of code for this table that were all
correctly referencing table 3.

Signed-off-by: Russell Bryant <russell@ovn.org>
---
 northd/ovn-northd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c
index 194e4bf4a..ae81a6944 100644
--- a/northd/ovn-northd.c
+++ b/northd/ovn-northd.c
@@ -7064,7 +7064,7 @@  build_lrouter_flows(struct hmap *datapaths, struct hmap *ports,
         free(snat_ips);
     }
 
-    /* Logical router ingress table 1: IP Input for IPv6. */
+    /* Logical router ingress table 3: IP Input for IPv6. */
     HMAP_FOR_EACH (op, key_node, ports) {
         if (!op->nbrp) {
             continue;