Re: [ovs-dev] [PATCH v2] configure: Identify OpenSSL libraries in Windows.

2014-01-30 Thread Ben Pfaff
On Thu, Jan 30, 2014 at 06:01:39PM -0800, Gurucharan Shetty wrote: > Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH] datapath: Fix ovs_flow_free() ovs-lock assert.

2014-01-30 Thread Pravin Shelar
I updated commit and added comment and pushed patch to master and 2.1. Thanks, Pravin. On Thu, Jan 30, 2014 at 6:13 PM, Jesse Gross wrote: > On Wed, Jan 29, 2014 at 7:18 PM, Jesse Gross wrote: >> On Wed, Jan 29, 2014 at 4:42 PM, Pravin Shelar wrote: >>> On Wed, Jan 29, 2014 at 4:38 PM, Jesse G

Re: [ovs-dev] [PATCH] datapath: Fix ovs_flow_free() ovs-lock assert.

2014-01-30 Thread Jesse Gross
On Wed, Jan 29, 2014 at 7:18 PM, Jesse Gross wrote: > On Wed, Jan 29, 2014 at 4:42 PM, Pravin Shelar wrote: >> On Wed, Jan 29, 2014 at 4:38 PM, Jesse Gross wrote: >>> On Wed, Jan 29, 2014 at 4:35 PM, Pravin Shelar wrote: On Wed, Jan 29, 2014 at 4:21 PM, Jesse Gross wrote: > On Wed, Ja

[ovs-dev] [PATCH v2] configure: Identify OpenSSL libraries in Windows.

2014-01-30 Thread Gurucharan Shetty
Signed-off-by: Gurucharan Shetty --- BUILD.Windows | 22 ++ Makefile.am|3 +++ m4/ax_check_openssl.m4 |9 +++-- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/BUILD.Windows b/BUILD.Windows index 45a3c0a..ea931eb 100644 --- a/

Re: [ovs-dev] [PATCH 4/4] configure: Identify OpenSSL libraries in Windows.

2014-01-30 Thread Gurucharan Shetty
On Thu, Jan 30, 2014 at 4:31 PM, Ben Pfaff wrote: > On Thu, Jan 30, 2014 at 04:12:11PM -0800, Gurucharan Shetty wrote: >> Signed-off-by: Gurucharan Shetty > > It looks to me like we should really be adding $(SSL_INCLUDES) > unconditionally, not just for Windows. Okay. > > We should probably add S

Re: [ovs-dev] [PATCH] bridge: Set ofport column in every database transaction.

2014-01-30 Thread Ben Pfaff
Thanks, applied to master and branch-2.1. On Thu, Jan 30, 2014 at 04:11:13PM -0800, Justin Pettit wrote: > Acked-by: Justin Pettit > > > On 1/30/14, 3:40 PM, "Ben Pfaff" wrote: > > >Database transactions can occasionally fail due to concurrent changes in > >the database. When that happens, t

Re: [ovs-dev] [PATCH 3/4] cccl: Handle library paths for one shot compilation.

2014-01-30 Thread Ben Pfaff
On Thu, Jan 30, 2014 at 04:12:10PM -0800, Gurucharan Shetty wrote: > When one wishes to compile and link a program with an > external library in one shot, additional > option "-link" is expected after all the other options. For example, > > $ cl -I/c/OpenSSL-Win32/include 3.c -link -LIBPATH:"C:/Op

Re: [ovs-dev] [PATCH 4/4] configure: Identify OpenSSL libraries in Windows.

2014-01-30 Thread Ben Pfaff
On Thu, Jan 30, 2014 at 04:12:11PM -0800, Gurucharan Shetty wrote: > Signed-off-by: Gurucharan Shetty It looks to me like we should really be adding $(SSL_INCLUDES) unconditionally, not just for Windows. We should probably add SSL_LDFLAGS to LDFLAGS while we're at it. Does that simplify your su

[ovs-dev] [PATCH 4/4] configure: Identify OpenSSL libraries in Windows.

2014-01-30 Thread Gurucharan Shetty
Signed-off-by: Gurucharan Shetty --- BUILD.Windows | 22 ++ Makefile.am|1 + m4/ax_check_openssl.m4 |9 +++-- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/BUILD.Windows b/BUILD.Windows index 45a3c0a..f00a722 100644 --- a/BU

[ovs-dev] [PATCH 1/4] BUILD.Windows: Clarify on the correct linker.

2014-01-30 Thread Gurucharan Shetty
This has tripped a couple of people. The workaround in cccl does not actually work. So get rid of it and clarify in documentation. Signed-off-by: Gurucharan Shetty --- BUILD.Windows |4 build-aux/cccl |4 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BUILD.Wi

[ovs-dev] [PATCH 2/4] BUILD.Windows: Add documentation to handle the libtool change.

2014-01-30 Thread Gurucharan Shetty
With the recent change to libtool, the default behavior is to use MinGW's 'ld'. Set the LD variable to direct it to Visual Studio's linker. The wordings for the documentation is copied from INSTALL. Signed-off-by: Gurucharan Shetty --- BUILD.Windows | 20 +--- 1 file changed,

[ovs-dev] [PATCH 3/4] cccl: Handle library paths for one shot compilation.

2014-01-30 Thread Gurucharan Shetty
When one wishes to compile and link a program with an external library in one shot, additional option "-link" is expected after all the other options. For example, $ cl -I/c/OpenSSL-Win32/include 3.c -link -LIBPATH:"C:/OpenSSL-Win32/lib" This is needed in an upcoming commit to compile conftest.c

Re: [ovs-dev] [PATCH] bridge: Set ofport column in every database transaction.

2014-01-30 Thread Justin Pettit
Acked-by: Justin Pettit On 1/30/14, 3:40 PM, "Ben Pfaff" wrote: >Database transactions can occasionally fail due to concurrent changes in >the database. When that happens, the next transaction should repeat the >changes that ovs-vswitchd tried to make the first time (adjusted for the >changes

[ovs-dev] [PATCH] tests: Re-fix a race.

2014-01-30 Thread Ethan Jackson
Patch bf06c4fe (tests/ofproto-dpif.at: Workaround a race.), fixed a race condition which patch 0a8763f (ofproto-dpif-upcall: Hardcode max_idle to 1500ms.) unfixed. Signed-off-by: Ethan Jackson Reported-by: YAMAMOTO Takashi --- tests/ofproto-dpif.at | 6 ++ 1 file changed, 6 insertions(+) d

Re: [ovs-dev] [PATCH] ofproto-dpif-upcall: Hardcode max_idle to 1500ms.

2014-01-30 Thread Ethan Jackson
I think you're right. I'll write up a patch. Ethan On Wed, Jan 29, 2014 at 4:39 PM, YAMAMOTO Takashi wrote: >> Before this patch, OVS tried to guess an optimal max idle time for >> datapath flows based on the number of datapath flows relative to the >> limit. This caused instability because th

[ovs-dev] [PATCH] bridge: Set ofport column in every database transaction.

2014-01-30 Thread Ben Pfaff
Database transactions can occasionally fail due to concurrent changes in the database. When that happens, the next transaction should repeat the changes that ovs-vswitchd tried to make the first time (adjusted for the changes to the database). The code to report the OpenFlow port number in use di

Re: [ovs-dev] [PATCH] Fully initialize structures to accomodate non C99 compilers.

2014-01-30 Thread Linda Sun
I found a different solution. Upgraded my system to use visual studio 2013, which has included c99 libraries. Hooray! I just verified ovsdb-types.h works as it is on the new VS. Thanks! Linda - Original Message - From: "Ben Pfaff" To: "Linda Sun" Cc: dev@openvswitch.org Sent: Wedn

[ovs-dev] Urgent Message from John Baxter

2014-01-30 Thread JOHN BAXTER
My name is John Baxter and I am a diplomat based in Switzerland, I am contacting you concerning a very confidential business proposition worth €7.8 million. Kindly indicate your interest for details. Mein Name ist John Baxter und ich bin ein Diplomat in der Swiotzerland, bin ich mit Ihn

[ovs-dev] Tunnel matching and remote_ip=flow (was Re: [ovs-discuss] vxlan remote_ip flow help)

2014-01-30 Thread Thomas Morin
Hi, I ran into the same issue as the one described below (post on ovs-discuss a few months back). The goal is to use a vport tunnel configured to use a flow-based remote IP, e.g: ovs-vscl add-port br-vnet tun-port -- set Interface tun-port type=gre options:remote_ip=flow This works fin

Re: [ovs-dev] [dpdk-dev] [PATCH RFC] dpif-netdev: Add support Intel DPDK based ports.

2014-01-30 Thread Rogers, Gerald
Prashant, IVShm is supported by the Intel DPDK client rings, and a patched QEMU/KVM from the OVDK work on 01.org (https://01.org/packet-processing). The main part being the patched QEMU/KVM to map the Intel DPDK Huge Page Tables (with Release of Intel DPDK 1.6 the requirement to map 1 GB huge pag

[ovs-dev] Bonjour

2014-01-30 Thread Mlle Nadège Tagro
Bonjour, repondez moi ici (juliet2co...@cantv.net) Je voudrais avec votre accord vous présenter ma situation et vous proposer une affaire qui pourrait vous intéresser. Avant de poursuivre, permettez-moi de décliner mon identité. Je suis Nadège Tagro,fille de feu M. Désiré Tagro, l'ex-ministre d

Re: [ovs-dev] [dpdk-dev] [PATCH RFC] dpif-netdev: Add support Intel DPDK based ports.

2014-01-30 Thread Prashant Upadhyaya
Hi Pravin, Request you to please validate atleast one method to interface VM's with your innovative dpdk port on the OVS. Preferably IVSHM. Please do publish the steps for that too. We really need the above for huge acceptance. Regards -Prashant -Original Message- From: Pravin Shelar