summaryrefslogtreecommitdiff
path: root/ovn
diff options
context:
space:
mode:
authorRyan Moats <rmoats@us.ibm.com>2016-07-14 13:34:54 -0500
committerRussell Bryant <russell@ovn.org>2016-07-14 16:35:00 -0400
commit6a9d35dde4a93042cd635b30eeaa689401c10177 (patch)
tree8f5f9ed5abf01e94a4fb424136975ba8b85ac57e /ovn
parent2926d0524d9a41a6c8fafd777e91ad949d871b89 (diff)
downloadopenvswitch-6a9d35dde4a93042cd635b30eeaa689401c10177.tar.gz
ovn-northd: Remove extraneous ip4 mulicast logical flow.
IPv4 multicast is already dropped by a previous logical flow written for the logical router, so there is no reason to add a lower priority rule for it. Signed-off-by: Ryan Moats <rmoats@us.ibm.com> Acked-by: Flavio Fernandes <flavio@flaviof.com> Signed-off-by: Russell Bryant <russell@ovn.org>
Diffstat (limited to 'ovn')
-rw-r--r--ovn/northd/ovn-northd.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ovn/northd/ovn-northd.c b/ovn/northd/ovn-northd.c
index b1c2c6cf1..7ce509dab 100644
--- a/ovn/northd/ovn-northd.c
+++ b/ovn/northd/ovn-northd.c
@@ -2251,10 +2251,6 @@ build_lrouter_flows(struct hmap *datapaths, struct hmap *ports,
ovn_lflow_add(lflows, od, S_ROUTER_IN_IP_INPUT, 50,
"eth.bcast", "drop;");
- /* Drop IP multicast. */
- ovn_lflow_add(lflows, od, S_ROUTER_IN_IP_INPUT, 50,
- "ip4.mcast", "drop;");
-
/* TTL discard.
*
* XXX Need to send ICMP time exceeded if !ip.later_frag. */