@@ -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);