diff options
author | Elias Richard <eliasric@ul001609.eu.tieto.com> | 2018-05-04 09:46:50 +0200 |
---|---|---|
committer | Richard Elias <richard.elias@tieto.com> | 2018-05-24 11:06:25 +0000 |
commit | 7820695ec10db06f7f486902ef3ef04b2bc40da3 (patch) | |
tree | 5b8eace2240be8f01a9b0016de551a599bd68be7 /vswitches | |
parent | 446e4c14c7f91b797a338db94b9bcb32b1c7d229 (diff) |
vswitches/ovs: delete flows on stop
While removing bridges, also remove any flows created on them.
JIRA: VSPERF-577
Change-Id: Ie0cbe65c823e690c9b3e5149ff2af0b56809fccd
Signed-off-by: Richard Elias <richard.elias@tieto.com>
Reviewed-by: Martin Klozik <martin.klozik@tieto.com>
Reviewed-by: Al Morton <acmorton@att.com>
Reviewed-by: Christian Trautman <ctrautma@redhat.com>
Reviewed-by: Sridhar Rao <sridhar.rao@spirent.com>
Diffstat (limited to 'vswitches')
-rw-r--r-- | vswitches/ovs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vswitches/ovs.py b/vswitches/ovs.py index 6f650005..be7b77df 100644 --- a/vswitches/ovs.py +++ b/vswitches/ovs.py @@ -1,4 +1,4 @@ -# Copyright 2015-2017 Intel Corporation. +# Copyright 2015-2018 Intel Corporation, Tieto and Others. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -149,6 +149,7 @@ class IVSwitchOvs(IVSwitch, tasks.Process): """See IVswitch for general description """ bridge = self._bridges[switch_name] + bridge.del_flow({}) for port in list(bridge.get_ports()): bridge.del_port(port) self._bridges.pop(switch_name) |