This patch fixes two problems. 1) The 'action "ovs-appctl dpctl/flush-conntrack"' does not do anything because a command does not follow it.
2) Even after adding the command it still doesn't work - it must be done before the stop_forwarding command. In addition, make the message more human friendly. Signed-off-by: Greg Rose <[email protected]> --- V3 - split this patch from the previous patch since it addresses a different logical problem. --- utilities/ovs-lib.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/ovs-lib.in b/utilities/ovs-lib.in index 6a958cb..92f98ad 100644 --- a/utilities/ovs-lib.in +++ b/utilities/ovs-lib.in @@ -605,6 +605,7 @@ force_reload_kmod () { stop_ovsdb start_ovsdb || return 1 + action "Flush old conntrack entries" ovs-appctl dpctl/flush-conntrack stop_forwarding if action "Saving interface configuration" save_interfaces; then @@ -620,7 +621,6 @@ force_reload_kmod () { for dp in `ovs-dpctl dump-dps`; do action "Removing datapath: $dp" ovs-dpctl del-dp "$dp" done - action "ovs-appctl dpctl/flush-conntrack" ovs_kmod_ctl remove -- 1.8.3.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
