Re: [ovs-dev] [PATCH v2 2/3] ovs-save: Use a file to restore flows instead of heredoc

2017-10-27 Thread Ben Pfaff
On Tue, Oct 17, 2017 at 03:27:31PM -0200, Flavio Leitner wrote: > On Mon, 25 Sep 2017 16:44:05 +0200 > Timothy Redaelli wrote: > > > This patch makes ovs-save to use a file to restore flows instead of using > > shell script here-document. > > This is needed since eval + here-documents are much sl

Re: [ovs-dev] [PATCH v2 2/3] ovs-save: Use a file to restore flows instead of heredoc

2017-10-17 Thread Flavio Leitner
On Mon, 25 Sep 2017 16:44:05 +0200 Timothy Redaelli wrote: > This patch makes ovs-save to use a file to restore flows instead of using > shell script here-document. > This is needed since eval + here-documents are much slower than reading a file > with the rules directly. > > Signed-off-by: Timo

[ovs-dev] [PATCH v2 2/3] ovs-save: Use a file to restore flows instead of heredoc

2017-09-25 Thread Timothy Redaelli
This patch makes ovs-save to use a file to restore flows instead of using shell script here-document. This is needed since eval + here-documents are much slower than reading a file with the rules directly. Signed-off-by: Timothy Redaelli --- utilities/ovs-save | 13 +++-- 1 file changed,