summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-05-15 17:09:37 +0000
committerGerrit Code Review <review@openstack.org>2023-05-15 17:09:37 +0000
commitbeabb5193821a8427d8c5707f184c384bb848968 (patch)
tree9ba01faabf901db94b0f463b7fc99b7caaae0d83
parent01af4b2cda928d76d64ff828f597f3a4dc988199 (diff)
parent7573fca58c147eddddbfff6eebc3554fcdd23306 (diff)
downloadneutron-beabb5193821a8427d8c5707f184c384bb848968.tar.gz
Merge "Notify neutron-server ovs is restarted"
-rw-r--r--neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py24
-rw-r--r--neutron/tests/unit/plugins/ml2/drivers/openvswitch/agent/test_ovs_neutron_agent.py1
2 files changed, 14 insertions, 11 deletions
diff --git a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py
index 104052f72b..6f4407d441 100644
--- a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py
+++ b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py
@@ -1287,7 +1287,8 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
# Otherwise, these flows will be cleaned as stale due to the
# different cookie id. We also set refresh_tunnels if the agent
# has not received a notification and is missing tunnels.
- refresh_tunnels = (self.iter_num == 0) or tunnels_missing
+ refresh_tunnels = ((self.iter_num == 0) or tunnels_missing or
+ self.ovs_restarted)
devices_set = self.plugin_rpc.update_device_list(
self.context, devices_up, devices_down, self.agent_id,
self.conf.host, refresh_tunnels=refresh_tunnels)
@@ -2532,7 +2533,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
LOG.info("Cleaning stale %s flows", self.tun_br.br_name)
self.tun_br.cleanup_flows()
- def process_port_info(self, start, polling_manager, sync, ovs_restarted,
+ def process_port_info(self, start, polling_manager, sync,
ports, ancillary_ports, updated_ports_copy,
consecutive_resyncs, ports_not_ready_yet,
failed_devices, failed_ancillary_devices):
@@ -2563,7 +2564,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
# calling polling_manager.get_events() since
# the agent might miss some event (for example a port
# deletion)
- reg_ports = (set() if ovs_restarted else ports)
+ reg_ports = (set() if self.ovs_restarted else ports)
port_info = self.scan_ports(reg_ports, sync,
updated_ports_copy)
# Treat ancillary devices if they exist
@@ -2686,6 +2687,10 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
polling_manager.start()
def rpc_loop(self, polling_manager):
+ # Everytime enter this loop this should always be set False again,
+ # in case of any break (or exception) after the value be set
+ # to True.
+ self.ovs_restarted = False
idl_monitor = self.ovs.ovsdb.idl_monitor
sync = False
ports = set()
@@ -2693,7 +2698,6 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
activated_bindings_copy = set()
ancillary_ports = set()
tunnel_sync = True
- ovs_restarted = False
consecutive_resyncs = 0
need_clean_stale_flow = True
ports_not_ready_yet = set()
@@ -2740,7 +2744,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
except Exception:
LOG.exception("Error while configuring tunnel endpoints")
tunnel_sync = True
- ovs_restarted |= (self.ovs_status == ovs_const.OVS_RESTARTED)
+ self.ovs_restarted |= (self.ovs_status == ovs_const.OVS_RESTARTED)
devices_need_retry = (any(failed_devices.values()) or
any(failed_ancillary_devices.values()) or
ports_not_ready_yet)
@@ -2771,7 +2775,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
self.activated_bindings = set()
(port_info, ancillary_port_info, consecutive_resyncs,
ports_not_ready_yet) = (self.process_port_info(
- start, polling_manager, sync, ovs_restarted,
+ start, polling_manager, sync,
ports, ancillary_ports, updated_ports_copy,
consecutive_resyncs, ports_not_ready_yet,
failed_devices, failed_ancillary_devices))
@@ -2793,11 +2797,11 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
# on Neutron server
if (self._port_info_has_changes(port_info) or
self.sg_agent.firewall_refresh_needed() or
- ovs_restarted):
+ self.ovs_restarted):
LOG.debug("Starting to process devices in:%s",
port_info)
provisioning_needed = (
- ovs_restarted or bridges_recreated)
+ self.ovs_restarted or bridges_recreated)
failed_devices = self.process_network_ports(
port_info, provisioning_needed)
LOG.info("Agent rpc_loop - iteration:%(iter_num)d - "
@@ -2831,9 +2835,6 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
self.update_retries_map_and_remove_devs_not_to_retry(
failed_devices, failed_ancillary_devices,
failed_devices_retries_map))
- # Keep this flag in the last line of "try" block,
- # so we can sure that no other Exception occurred.
- ovs_restarted = False
self._dispose_local_vlan_hints()
except Exception:
LOG.exception("Error while processing VIF ports")
@@ -2841,6 +2842,7 @@ class OVSNeutronAgent(l2population_rpc.L2populationRpcCallBackTunnelMixin,
self.updated_ports |= updated_ports_copy
self.activated_bindings |= activated_bindings_copy
sync = True
+ self.ovs_restarted = False
port_stats = self.get_port_stats(port_info, ancillary_port_info)
self.loop_count_and_wait(start, port_stats)
diff --git a/neutron/tests/unit/plugins/ml2/drivers/openvswitch/agent/test_ovs_neutron_agent.py b/neutron/tests/unit/plugins/ml2/drivers/openvswitch/agent/test_ovs_neutron_agent.py
index 587d3c8e1c..8ddb24d9e2 100644
--- a/neutron/tests/unit/plugins/ml2/drivers/openvswitch/agent/test_ovs_neutron_agent.py
+++ b/neutron/tests/unit/plugins/ml2/drivers/openvswitch/agent/test_ovs_neutron_agent.py
@@ -149,6 +149,7 @@ class TestOvsNeutronAgent(object):
mock.patch('neutron.agent.ovsdb.impl_idl._connection').start()
self.agent = self._make_agent()
self.agent.sg_agent = mock.Mock()
+ self.agent.ovs_restarted = False
def _make_agent(self):
with mock.patch.object(self.mod_agent.OVSNeutronAgent,