]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Prevent an iteration through ports on IPv6 slaac
authorKevin Benton <blak111@gmail.com>
Tue, 18 Nov 2014 16:34:56 +0000 (08:34 -0800)
committerIhar Hrachyshka <ihrachys@redhat.com>
Wed, 26 Nov 2014 18:39:24 +0000 (19:39 +0100)
A recent change[1] allowed subnets to be deleted even if they
had active IPv6 SLAAC allocations on them. The updated check
was inefficient because it would check every port in the subnet
even if the subnet was a SLAAC subnet. This patch just shortcuts
out that check.

1. I281f5a1553248e09174dc49d0a42aef4b5c44bee

Change-Id: I2c35495b3642c644e4758f28ccddcc076139ec3b
(cherry picked from commit b3a44c2d5d8ca85bcc5ccffc76d2a959e373e5d4)

neutron/plugins/ml2/plugin.py

index fe3a6face8ac7e3bace9499f134b711c22655d5c..26d2c98a3a684514c98161775cdeb2e17dac6022 100644 (file)
@@ -725,11 +725,9 @@ class Ml2Plugin(db_base_plugin_v2.NeutronDbPluginV2,
                              filter_by(network_id=subnet['network_id']).
                              with_lockmode('update').all())
                 LOG.debug(_("Ports to auto-deallocate: %s"), allocated)
-                only_auto_del = all(not a.port_id or
-                                    a.ports.device_owner in db_base_plugin_v2.
-                                    AUTO_DELETE_PORT_OWNERS or
-                                    ipv6_utils.is_slaac_subnet(subnet)
-                                    for a in allocated)
+                only_auto_del = ipv6_utils.is_slaac_subnet(subnet) or all(
+                    not a.port_id or a.ports.device_owner in db_base_plugin_v2.
+                    AUTO_DELETE_PORT_OWNERS for a in allocated)
                 if not only_auto_del:
                     LOG.debug(_("Tenant-owned ports exist"))
                     raise exc.SubnetInUse(subnet_id=id)