[ovs-dev] [PATCH v2] ovs-vswitchd: Update documentation

2015-05-27 Thread Mijo Safradin
Commit 7a6cf343a410d77e05ebd7bf5b5ade52803879ae raised the MAXFD limit from 7500 to 65535. Signed-off-by: Mijo Safradin --- vswitchd/ovs-vswitchd.8.in |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/vswitchd/ovs-vswitchd.8.in b/vswitchd/ovs-vswitchd.8.in index

Re: [ovs-dev] [PATCH] ovs-vswitchd: Update documentation

2015-05-27 Thread Mijo Safradin
On Tue, 26 May 2015, Ben Pfaff wrote: -\fBovs\-vswitchd\fR started through \fBovs\-ctl\fR(8) provides a limit of 7500 +\fBovs\-vswitchd\fR started through \fBovs\-ctl\fR(8) provides a limit of 65535 file descriptors. The limits on the number of bridges and ports is decided by the availabili

[ovs-dev] [PATCH] ovs-vswitchd: Update documentation

2015-05-24 Thread Mijo Safradin
Commit 7a6cf343a410d77e05ebd7bf5b5ade52803879ae raised the MAXFD limit from 7500 to 65535. Signed-off-by: Mijo Safradin --- vswitchd/ovs-vswitchd.8.in |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/vswitchd/ovs-vswitchd.8.in b/vswitchd/ovs-vswitchd.8.in index b9eb004

Re: [ovs-dev] [PATCH] configure: Omit -O2 from $CFLAGS when configuring with --enable-coverage.

2015-01-05 Thread Mijo Safradin
CFLAGS follows OVS_CFLAGS in the compiler command line, and should, so that the user can override any automatically determined compiler options. That means that the -O0 that the code here added to OVS_CFLAGS didn't really have any effect since CFLAGS by default includes "-O2". However, we do

Re: [ovs-dev] [PATCH 1/2] [RFC] Fix build flags when using code coverage

2015-01-04 Thread Mijo Safradin
On Fri, 2 Jan 2015, Ben Pfaff wrote: On Fri, Jan 02, 2015 at 09:45:35PM +0100, Mijo Safradin wrote: Currently multiple optimization flags are defined when building with coverage support. Currently the coverage optimization -O0 flag gets overruled by a later '-O2' setting. For cove

[ovs-dev] [PATCH 2/2] Ignore coverage data files

2015-01-02 Thread Mijo Safradin
Add coverage specific data files to gitignore Signed-off-by: Mijo Safradin --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 8201d50..50ec1d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ #*# *.a *.d +*.gcno +*.gcda *.ko *.la