From: Anton Ivanov <[email protected]>
Signed-off-by: Anton Ivanov <[email protected]>
---
northd/ovn-northd.c | 31 +++++++++++++++++++------------
1 file changed, 19 insertions(+), 12 deletions(-)
diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c
index 5ce33090d..4c50a844b 100644
--- a/northd/ovn-northd.c
+++ b/northd/ovn-northd.c
@@ -6951,6 +6951,24 @@ build_lswitch_flows_dns_response_od(
}
}
+static void
+build_lswitch_flows_arp_response_op(
+ struct ovn_port *op, struct hmap *lflows)
+{
+ if (!op->nbsp || !lsp_is_external(op->nbsp)) {
+ return;
+ }
+
+ /* Table 18: External port. Drop ARP request for router ips from
+ * external ports on chassis not binding those ports.
+ * This makes the router pipeline to be run only on the chassis
+ * binding the external ports. */
+ for (size_t i = 0; i < op->od->n_localnet_ports; i++) {
+ build_drop_arp_nd_flows_for_unbound_router_ports(
+ op, op->od->localnet_ports[i], lflows);
+ }
+}
+
static void
build_lswitch_flows(struct hmap *datapaths, struct hmap *ports,
struct hmap *port_groups, struct hmap *lflows,
@@ -7055,18 +7073,7 @@ build_lswitch_flows(struct hmap *datapaths, struct hmap
*ports,
}
HMAP_FOR_EACH (op, key_node, ports) {
- if (!op->nbsp || !lsp_is_external(op->nbsp)) {
- continue;
- }
-
- /* Table 18: External port. Drop ARP request for router ips from
- * external ports on chassis not binding those ports.
- * This makes the router pipeline to be run only on the chassis
- * binding the external ports. */
- for (size_t i = 0; i < op->od->n_localnet_ports; i++) {
- build_drop_arp_nd_flows_for_unbound_router_ports(
- op, op->od->localnet_ports[i], lflows);
- }
+ build_lswitch_flows_arp_response_op(op, lflows);
}
char *svc_check_match = xasprintf("eth.dst == %s", svc_monitor_mac);
--
2.20.1
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev