[ovs-dev] You have been nominated for the £2 million charity support

2017-05-09 Thread Barrister Bobby Smith
You have been nominated for the charity program to support Prince Alwaleed Bin Tala, please contact: http://bit.do/23awsa for more information. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus

Re: [ovs-dev] [PATCH 1/2] Revert "tunneling: Avoid recirculation on datapath."

2017-05-09 Thread Darrell Ball
It might be good to add a test that checks that “all the fields” associated with tunnel header can be matched in the underlay bridge context I did a quick test with your patch: ip_proto/nw_proto was fine and matching GRE I could also successfully match on ip_dst/nw_dst but not on ip_src/nw_src,

Re: [ovs-dev] [PATCH 2/2] sparse: Avoid warnings compiling stream-ssl.c.

2017-05-09 Thread Darrell Ball
I don’t see the Sparse complaint I am using dball@ubuntu:~/ovs$ openssl version OpenSSL 1.0.2g 1 Mar 2016 dball@ubuntu:~/ovs$ uname -a Linux ubuntu 4.4.0-75-generic #96-Ubuntu SMP Thu Apr 20 09:56:33 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux The line number quoted in the commit message here

Re: [ovs-dev] ovn: SFC Patch V3

2017-05-09 Thread John McDowall
Mickey, Thanks for the review. I need some help understanding a couple of things: 1) The proposed change, I could see the previous logic where we inserted the flow back in the ingress pipeline just after the IN_CHAIN stage. The changes you suggest seem to imply that the action is still

[ovs-dev] [PATCH v7 4/4] windows-datapath: Temporary workaround checksum issue with NAT

2017-05-09 Thread Yin Lin
From: Alin Gabriel Serdean There is a known bug with NAT where checksum computation is wrong on the RX path if offload is enabled. This patch works around the problem by always computing a software checksum and should be reverted once we figure out the root cause

[ovs-dev] [PATCH v7 2/4] datapath-windows: Add NAT module in conntrack

2017-05-09 Thread Yin Lin
Signed-off-by: Yin Lin --- datapath-windows/automake.mk| 2 + datapath-windows/ovsext/Conntrack-nat.c | 424 datapath-windows/ovsext/Conntrack-nat.h | 39 +++ 3 files changed, 465 insertions(+) create mode 100644

[ovs-dev] [PATCH v7 1/4] datapath-windows: Add support for NAT in conntrack

2017-05-09 Thread Yin Lin
From: Anand Kumar Add support for parsing netlink attributes related to NAT in conntrack. Co-Authored-by: Anand Kumar Co-Authored-by: Darrell Ball Signed-off-by: Yin Lin --- datapath-windows/ovsext/Conntrack.c

[ovs-dev] [PATCH v7 3/4] datapath-windows: NAT integration with conntrack

2017-05-09 Thread Yin Lin
This patch integrates NAT module with existing conntrack module. NAT action is now supported. Signed-off-by: Yin Lin --- datapath-windows/automake.mk | 4 +- datapath-windows/ovsext/Actions.c | 119 - datapath-windows/ovsext/Actions.h

Re: [ovs-dev] [PATCH] docs: Improve formatting for daemon options in a few manpages.

2017-05-09 Thread Andy Zhou
On Mon, May 8, 2017 at 7:43 AM, Ben Pfaff wrote: > daemon.man is meant to have a heading above it, but in a few manpages its > text was running directly into the previous documentation because this had > been overlooked. > > By adding .PP to daemon.man, we make this problem less

Re: [ovs-dev] [PATCH ovs V8 00/26] Introducing HW offload support for openvswitch

2017-05-09 Thread Joe Stringer
On 9 May 2017 at 12:05, Flavio Leitner wrote: > On Sun, May 07, 2017 at 10:55:32AM +0300, Roi Dayan wrote: >> >> >> On 03/05/2017 18:58, Federico Iezzi wrote: >> > On Wed, May 3, 2017 at 5:07 PM, Roi Dayan wrote: >> > > This patch series introduces rule

Re: [ovs-dev] 答复: Re: ?答复: Re: 答复: Re: [PATCH] ovn-controller: Support vxlan tunnel in ovn

2017-05-09 Thread Ben Pfaff
The solution presented so far breaks OVN current and planned features. If you have a solution that doesn't break OVN current or planned features, let's talk about it. Until then, it is not interesting. On Tue, May 09, 2017 at 09:29:07AM +0800, wang.qia...@zte.com.cn wrote: > Hi Ben and Mikey,

Re: [ovs-dev] [PATCH] OVN localport type support

2017-05-09 Thread Ben Pfaff
Thanks. This is a good summary of some of what the patch does. Should it be in the commit message? On Tue, May 09, 2017 at 05:09:43PM +0200, Daniel Alvarez Sanchez wrote: > Hi, > > I've submitted a new patch v3 where I removed the external-id > "ovn-localport" > from the Interface which I used

Re: [ovs-dev] [PATCH ovs V8 12/26] netdev-tc-offloads: Add flower mask to priority map

2017-05-09 Thread Flavio Leitner
On Tue, May 09, 2017 at 03:23:12PM -0300, Flavio Leitner wrote: > On Wed, May 03, 2017 at 06:08:03PM +0300, Roi Dayan wrote: > > From: Paul Blakey > > > > Flower classifer requires a different priority per mask, > > so we hash the mask and generate a new priority for > > each

Re: [ovs-dev] [PATCH ovs V8 00/26] Introducing HW offload support for openvswitch

2017-05-09 Thread Flavio Leitner
On Sun, May 07, 2017 at 10:55:32AM +0300, Roi Dayan wrote: > > > On 03/05/2017 18:58, Federico Iezzi wrote: > > On Wed, May 3, 2017 at 5:07 PM, Roi Dayan wrote: > > > This patch series introduces rule offload functionality to dpif-netlink > > > via netdev ports new flow

Re: [ovs-dev] [PATCH ovs V8 12/26] netdev-tc-offloads: Add flower mask to priority map

2017-05-09 Thread Flavio Leitner
On Wed, May 03, 2017 at 06:08:03PM +0300, Roi Dayan wrote: > From: Paul Blakey > > Flower classifer requires a different priority per mask, > so we hash the mask and generate a new priority for > each new mask used. > > Signed-off-by: Paul Blakey >

Re: [ovs-dev] [PATCH ovs V8 13/26] netdev-tc-offloads: Implement netdev flow put using tc interface

2017-05-09 Thread Flavio Leitner
On Wed, May 03, 2017 at 06:08:04PM +0300, Roi Dayan wrote: > From: Paul Blakey > > Currently only tunnel offload is supported. > > Signed-off-by: Paul Blakey > Reviewed-by: Roi Dayan > Reviewed-by: Simon Horman

Re: [ovs-dev] [PATCH ovs V8 02/26] netdev: Adding a new netdev api to be used for offloading flows

2017-05-09 Thread Flavio Leitner
On Wed, May 03, 2017 at 06:07:53PM +0300, Roi Dayan wrote: > From: Paul Blakey > > Signed-off-by: Paul Blakey > Reviewed-by: Roi Dayan > Reviewed-by: Simon Horman > --- > lib/automake.mk | 2 + >

[ovs-dev] Payment of $1,295.00 from 268131

2017-05-09 Thread Stripe Support
Congratulations! You have just received a payment of $1,295.00. You can view the full details of this payment in your dashboard: LOG IN TO THE DASHBOARD We'll be here to help you with any step along the way. You can find answers to most questions and get

[ovs-dev] Best 2017 Project Management Software

2017-05-09 Thread Betty Rivera
Find The Best 2017 Project Management Software Learn More

Re: [ovs-dev] [RFC PATCH] netdev-dpdk: Add Tx intermediate queue for vhost ports.

2017-05-09 Thread Eelco Chaudron
On 23/04/17 17:41, Bhanuprakash Bodireddy wrote: > This commit adds the intermediate queue for vHost-user ports. It > improves the throughput in multiple virtual machines deployments and > also in cases with VM doing packet forwarding in kernel stack. > > This patch is aligned with intermediate

Re: [ovs-dev] [PATCH] OVN localport type support

2017-05-09 Thread Daniel Alvarez Sanchez
Hi, I've submitted a new patch v3 where I removed the external-id "ovn-localport" from the Interface which I used to identify a port as localport in physical.c. Instead, I have passed another parameter "local_lports" to physical_run. When inserting flows in table 32, I'm inserting higher

[ovs-dev] [PATCH v3] OVN localport type support

2017-05-09 Thread Daniel Alvarez
This patch introduces a new type of OVN ports called "localport". These ports will be present in every hypervisor and may have the same IP/MAC addresses. They are not bound to any chassis and traffic to these ports will never go through a tunnel. Its main use case is the OpenStack metadata API

[ovs-dev] Sync on PTAP, EXT-382 and NSH: Minutes of meeting Wed 2017-05-09, 14:00 CET

2017-05-09 Thread Jan Scheurich
Participants * Ben M, Zoltan, Georg, Jan, Simon Review/Discussion of current patch packages 1. RTNETLINK tunnel configuration - v3 still under review by Joe S (no update) 2. L3 Tunneling a. v4: Ben P has merged 1st patch. Comment on 2nd patch fixed in v5 b. v5: out on

Re: [ovs-dev] [PATCH 1/2] Revert "tunneling: Avoid recirculation on datapath."

2017-05-09 Thread Zoltán Balogh
Hi, I created a patch that updates flow and base_flow L2/L3 members when pushing packet to tunnel, and fixes statistics on underlay bridge. I posted it to the original thread: https://mail.openvswitch.org/pipermail/ovs-dev/2017-May/332265.html As I see, you have not reverted the "Avoid

Re: [ovs-dev] [PATCH v5] tunneling: Avoid recirculation on datapath by computing the recirculate actions at translate time.

2017-05-09 Thread Zoltán Balogh
Hi, Thank you for your comments. Actually, I was wrong in my previous e-mail when I stated that packet is truncated only at the end of the pipeline, when output is applied. The packet size is set according max_len set by truncate when tunnel_push is applied. So the size of packet is correct.

Re: [ovs-dev] Wachtwoord verlopen vandaag

2017-05-09 Thread Cynthia Sullivan
From: Cynthia Sullivan Sent: Tuesday, May 9, 2017 3:19 AM To: Cynthia Sullivan Subject: Wachtwoord verlopen vandaag Geachte e-mail gebruiker. Uw Outlook EMAIL ACCOUNT PASSWORD verloopt Vandaag, en u wordt verzocht het binnen 24 uur opnieuw te

[ovs-dev] [PATCH v3 1/1] dpif-netdev: The pmd-*-show commands will show info in core order

2017-05-09 Thread Eelco Chaudron
The "ovs-appctl dpif-netdev/pmd-rxq-show" and "ovs-appctl dpif-netdev/pmd-stats-show" commands show their output per core_id, sorted on the hash location. My OCD was kicking in when using these commands, hence this change to display them in natural core_id order. In addition I had to change a

Re: [ovs-dev] [PATCH v2 1/1] dpif-netdev: The pmd-*-show commands will show info in core order

2017-05-09 Thread Eelco Chaudron
Please Ignore as it has the wrong sign-off header :( //Eelco On 09/05/17 09:00, Eelco Chaudron wrote: From: root The "ovs-appctl dpif-netdev/pmd-rxq-show" and "ovs-appctl dpif-netdev/pmd-stats-show" commands show their output per core_id,