summaryrefslogtreecommitdiff
path: root/utilities/ovs-lib.in
diff options
context:
space:
mode:
authorYi-Hung Wei <yihung.wei@gmail.com>2018-10-30 13:47:25 -0700
committerBen Pfaff <blp@ovn.org>2018-10-31 10:38:08 -0700
commit21bc775f522e13798a0d1d9c07bb9b06ad3ac842 (patch)
tree3169e9eef483ead61ac5aa467cdf188924d4fa54 /utilities/ovs-lib.in
parent923a45665e6cfc0500837c28c761e7a1f6f5f038 (diff)
downloadopenvswitch-21bc775f522e13798a0d1d9c07bb9b06ad3ac842.tar.gz
ovs-lib.in: Remove unnecessary conntrack flush
We introduced flush-conntrack in force-reload-kmod script by commit 8bea39b186ca ("datapath: Prevent panic") to prevent kernel panic. It turns out that the kernel panic is actually triggered by the IPv4 secret timer, and it is fixed by commit 121905984724 ("compat: Initialize IPv4 reassembly secret timer"). This commit removes the unnecessary conntrack flush in the script. Signed-off-by: Yi-Hung Wei <yihung.wei@gmail.com> CC: Greg Rose <gvrose8192@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Reviewed-by: Greg Rose <gvrose8192@gmail.com>
Diffstat (limited to 'utilities/ovs-lib.in')
-rw-r--r--utilities/ovs-lib.in3
1 files changed, 0 insertions, 3 deletions
diff --git a/utilities/ovs-lib.in b/utilities/ovs-lib.in
index f6b539317..7df672c2c 100644
--- a/utilities/ovs-lib.in
+++ b/utilities/ovs-lib.in
@@ -608,9 +608,6 @@ force_reload_kmod () {
stop_ovsdb
start_ovsdb || return 1
- if [ -n "$(ovs-dpctl show)" ]; then
- action "Flush old conntrack entries" ovs-appctl dpctl/flush-conntrack
- fi
stop_forwarding
if action "Saving interface configuration" save_interfaces; then