[ovs-dev] Returned mail: see transcript for details

2016-06-15 Thread Bounced mail
Your message was undeliverable due to the following reason(s): Your message was not delivered because the destination computer was not reachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likely t

Re: [ovs-dev] [PATCH v6] datapath-windows: Add Geneve support

2016-06-15 Thread Nithin Raju
Hi Jesse, Thanks for the comments. My responses inlined. >>> /* Number of packet attributes required to store OVS tunnel key. */ >>>-#define NUM_PKT_ATTR_REQUIRED 3 >>>+#define NUM_PKT_ATTR_REQUIRED 35 >>>+#define TUN_OPT_MAX_LEN 255 >> >> Wouldn¹t it have been better for alignment purposes to hav

Re: [ovs-dev] [RFC PATCH 01/14] Add VxLAN-GPE extension for the Openvswitch

2016-06-15 Thread Li, Johnson
>"dev" wrote on 06/16/2016 04:51:34 AM: > > + return -EMSGSIZE; > > + > > + nla_nest_end(skb, exts); > > Nit: since this is almost identical to the previous block, I think > a refactoring where this block is abstracted into a helper or a > macro might make for easier

Re: [ovs-dev] [RFC PATCH 01/14] Add VxLAN-GPE extension for theOpenvswitch

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/16/2016 04:51:34 AM: > From: Johnson Li > To: dev@openvswitch.org > Date: 06/15/2016 09:05 PM > Subject: [ovs-dev] [RFC PATCH 01/14] Add VxLAN-GPE extension for the > Openvswitch > Sent by: "dev" > > VxLAN Generic Protocol Extension (aka. VxLAN-GPE) extension is > an new IETF

[ovs-dev] [RFC PATCH 07/14] Add APIs to set NSH keys for match fields

2016-06-15 Thread Johnson Li
Signed-off-by: Johnson Li diff --git a/include/openvswitch/match.h b/include/openvswitch/match.h index c955753..a1cca7e 100644 --- a/include/openvswitch/match.h +++ b/include/openvswitch/match.h @@ -86,6 +86,26 @@ void match_set_tun_gbp_id_masked(struct match *match, ovs_be16 gbp_id, ovs_be16 v

[ovs-dev] [RFC PATCH 01/14] Add VxLAN-GPE extension for the Openvswitch

2016-06-15 Thread Johnson Li
VxLAN Generic Protocol Extension (aka. VxLAN-GPE) extension is an new IETF draft. Its definition is at: https://tools.ietf.org/html/draft-ietf-nvo3-vxlan-gpe-01 This patch adds VxLAN-GPE implementation for the VxLAN tunneling port. To create a VxLAN port with GPE extension: $ovs-vsctl add-por

Re: [ovs-dev] [PATCH v2 01/16] datapath: Allow compiling older kernels with GCC 5.

2016-06-15 Thread Jesse Gross
On Tue, Jun 14, 2016 at 3:25 PM, Jarno Rajahalme wrote: > Older kernels don't have , which causes > compilation to fail on GCC 5. > > Signed-off-by: Jarno Rajahalme Is this something that we really want to support? I mean, if the kernel itself can't be compiled with GCC 5 I'm not sure that it's

Re: [ovs-dev] [PATCH v6] datapath-windows: Add Geneve support

2016-06-15 Thread Jesse Gross
On Wed, Jun 15, 2016 at 3:43 PM, Nithin Raju wrote: > -Original Message- > From: Yin Lin > Date: Monday, June 13, 2016 at 1:39 PM > To: "dev@openvswitch.org" , Nithin Raju > > Subject: [PATCH v6] datapath-windows: Add Geneve suppor > >>diff --git a/datapath-windows/ovsext/DpInternal.h >>

[ovs-dev] [PATCH V10] ovn-controller: reload configured SB probe timer

2016-06-15 Thread nghosh
From: Nirapada Ghosh The probe timer between ovn-controller and OVN Southbound can be configured using ovn-vsctl command, but that is not effective on the fly. In other words, ovn-controller has to be restarted to use that probe_timer value, this patch takes care of that. This change has been te

[ovs-dev] [PATCH v2] ovn-northd: no logical router icmp response for directed broadcasts

2016-06-15 Thread Flavio Fernandes
Responding to icmp queries where the L3 destination is a directed broadcast was not being properly handled, causing the reply to be sent to all logical ports except for the one port that should receive it. This is a proposal for using choice B in the mail discussion; where icmp queries to broadcas

Re: [ovs-dev] [PATCH] Travis: added python plugins flake8 and hacking.

2016-06-15 Thread Flaviof
On Wed, Jun 15, 2016 at 1:32 PM, William Townsend wrote: > Travis builds will now automatically run flake8 and hacking checks against > Python code and generate warnings. > > Signed-off-by: Willim Townsend > > Nitpick: fix typo in your name for the Signed-off-by. ;) > --- > .travis.yml

Re: [ovs-dev] [PATCH v5] datapath-windows: Add support for UDP and ICMP to Conntrack Module

2016-06-15 Thread Sairam Venugopal
Alin, Thanks for the review. I have sent a v6. I realized that the 2nd comment was previously addressed in v2, but not reflected in the v5 of the patch. Thanks, Sairam On 6/13/16, 10:31 PM, "Alin Serdean" wrote: >Hi Sai, > >Thanks for incorporating the comments so far. It looks good but we nee

[ovs-dev] [PATCH v6] datapath-windows: Add support for UDP and ICMP to Conntrack Module

2016-06-15 Thread Sairam Venugopal
Enable support for UDP and ICMP in the connection tracking module on Hyper-V. Define 1s as variable and reuse it. Signed-off-by: Sairam Venugopal --- datapath-windows/automake.mk | 1 + datapath-windows/ovsext/Conntrack-other.c | 82 + datapath-windows/ovsext/Conntrac

[ovs-dev] The crisis has finished! Work with us!

2016-06-15 Thread dev
Hello! We are looking for employees working remotely. My name is Phoebe, am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5000. If you are interested in this offer, please visit Our Site Best regards! __

Re: [ovs-dev] [PATCH v6] datapath-windows: Add Geneve support

2016-06-15 Thread Nithin Raju
Hi Yin, Thanks for the patch. The code looks good overall, but for the comments. One general observation is that I saw a few instances where you were declaring variables in the middle of a scope. While it is legal, IMO, it makes the code ugly esp. if the code is not written in blocks. So, I¹d requ

Re: [ovs-dev] [PATCH v2 2/2] netdev-dpdk: Support user-defined socket attribs

2016-06-15 Thread Aaron Conole
Ben Pfaff writes: > On Mon, Jun 13, 2016 at 05:36:34PM -0400, Aaron Conole wrote: >> > If these limitations are unacceptable, I can see how we can use >> > chmod. After all, as you point out, it's probably better to do it >> > in OVS than in some script. >> >> I think fchmod and fchown may actu

[ovs-dev] Network Security Software Users 2016

2016-06-15 Thread Jenkins Mackenzie
Hello there, Would you be keen on Network Security Software Users You can approach the Information Security Decision Makers from Technology and Security industry. We give 100% precise information of the Companies who are utilizing the said security framework:  BigFix 

[ovs-dev] [PATCH V8] Function tracer to trace all function calls

2016-06-15 Thread nghosh
From: Nirapada Ghosh In some circumstances, we might need to figure out where in code, the CPU time is being spent most, so as to pinpoint the bottleneck and thereby resolve it with proper changes. Using '-finstrument-functions' flag, that can be achieved, and this patch exactly does that. There

Re: [ovs-dev] [PATCH] Travis: added python plugins flake8 and hacking.

2016-06-15 Thread William Townsend
On Wed, Jun 15, 2016 at 3:39 PM, Ryan Moats wrote: > "dev" wrote on 06/15/2016 12:32:57 PM: > > > From: William Townsend > > To: dev@openvswitch.org > > Date: 06/15/2016 12:33 PM > > Subject: [ovs-dev] [PATCH] Travis: added python plugins flake8 and > hacking. > > Sent by: "dev" > > > > Travis

Re: [ovs-dev] [PATCH] Travis: added python plugins flake8 and hacking.

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/15/2016 12:32:57 PM: > From: William Townsend > To: dev@openvswitch.org > Date: 06/15/2016 12:33 PM > Subject: [ovs-dev] [PATCH] Travis: added python plugins flake8 and hacking. > Sent by: "dev" > > Travis builds will now automatically run flake8 and hacking checks against > P

Re: [ovs-dev] [PATCH V9] ovn-controller: reload configured SBprobetimer

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/15/2016 02:21:48 PM: > From: Ryan Moats/Omaha/IBM@IBMUS > To: Nirapada Ghosh/San Jose/IBM@IBMUS > Cc: dev@openvswitch.org > Date: 06/15/2016 02:22 PM > Subject: Re: [ovs-dev] [PATCH V9] ovn-controller: reload configured > SB probetimer > Sent by: "dev" > > "dev" wrote on 06/15

Re: [ovs-dev] [PATCH V7] Function tracer to trace all function calls

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/15/2016 11:54:05 AM: > From: Nirapada Ghosh/San Jose/IBM@IBMUS > To: dev@openvswitch.org > Date: 06/15/2016 11:54 AM > Subject: [ovs-dev] [PATCH V7] Function tracer to trace all function calls > Sent by: "dev" > > From: Nirapada Ghosh > > In some circumstances, we might nee

Re: [ovs-dev] [PATCH V9] ovn-controller: reload configured SB probetimer

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/15/2016 11:29:18 AM: > From: Nirapada Ghosh/San Jose/IBM@IBMUS > To: dev@openvswitch.org > Date: 06/15/2016 11:29 AM > Subject: [ovs-dev] [PATCH V9] ovn-controller: reload configured SB probe timer > Sent by: "dev" > > From: Nirapada Ghosh > > The probe timer between ovn-contr

Re: [ovs-dev] [PATCH v12 2/6] netdev-dpdk: Convert initialization from cmdline to db

2016-06-15 Thread Daniele Di Proietto
Given that's a new feature and that it breaks compatibility I don't think we should backport it. Thanks, Daniele On 13/06/2016 23:53, "gowrishankar" wrote: >Hi Daniele, >Is there a possibility that this patch would also go in branch-2.5 >(2.5.1) ?. > >Regards, >Gowrishankar > > >On Friday 2

Re: [ovs-dev] [PATCH V5] Function tracer to trace all function calls

2016-06-15 Thread Daniele Di Proietto
2016-06-15 6:37 GMT-07:00 Ryan Moats : > "dev" wrote on 06/14/2016 08:58:33 PM: > > > From: Daniele Di Proietto > > To: Nirapada Ghosh/San Jose/IBM@IBMUS > > Cc: "dev@openvswitch.org" > > Date: 06/14/2016 08:59 PM > > Subject: Re: [ovs-dev] [PATCH V5] Function tracer to trace all function > cal

Re: [ovs-dev] [PATCH V5] Function tracer to trace all function calls

2016-06-15 Thread Daniele Di Proietto
Hi Hui, I've never used oprofile, from what I read it's pretty similar to perf. To compile OVS for profiling or debugging I use the ovs-dev.py script, which adds "-fno-omit-frame-pointer" to CFLAGS. It would be equivalent to calling configure like this: ./configure CFLAGS="-O2 -g -fno-omit-fram

[ovs-dev] [PATCH] Travis: added python plugins flake8 and hacking.

2016-06-15 Thread William Townsend
Travis builds will now automatically run flake8 and hacking checks against Python code and generate warnings. Signed-off-by: Willim Townsend --- .travis.yml | 2 +- .travis/linux-prepare.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis

Re: [ovs-dev] [PATCH v2 0/5] create tunnel devices using rtnetlink interface

2016-06-15 Thread Flavio Leitner
On Wed, Jun 08, 2016 at 03:21:58PM -0300, Thadeu Lima de Souza Cascardo wrote: > This series adds support for the creation of tunnels using the rtnetlink > interface. This will open the possibility for new features and flags on those > vports without the need to change vport compatibility code. >

Re: [ovs-dev] [PATCH v2 0/4] OVN DHCP support proposal

2016-06-15 Thread Ryan Moats
Numan Siddique wrote on 06/15/2016 11:43:42 AM: > From: Numan Siddique > To: Ryan Moats/Omaha/IBM@IBMUS > Cc: ovs dev > Date: 06/15/2016 11:43 AM > Subject: Re: [ovs-dev] [PATCH v2 0/4] OVN DHCP support proposal > > On Wed, Jun 15, 2016 at 8:44 PM, Ryan Moats wrote: > "dev" wrote on 06/15/2

[ovs-dev] [PATCH V7] Function tracer to trace all function calls

2016-06-15 Thread nghosh
From: Nirapada Ghosh In some circumstances, we might need to figure out where in code, the CPU time is being spent most, so as to pinpoint the bottleneck and thereby resolve it with proper changes. Using '-finstrument-functions' flag, that can be achieved, and this patch exactly does that. There

Re: [ovs-dev] [PATCH v2 0/4] OVN DHCP support proposal

2016-06-15 Thread Numan Siddique
On Wed, Jun 15, 2016 at 8:44 PM, Ryan Moats wrote: > "dev" wrote on 06/15/2016 04:16:44 AM: > > > From: Numan Siddique > > To: ovs dev > > Date: 06/15/2016 04:17 AM > > Subject: [ovs-dev] [PATCH v2 0/4] OVN DHCP support proposal > > Sent by: "dev" > > > > > v1 -> v2 changes > > --

[ovs-dev] [PATCH V9] ovn-controller: reload configured SB probe timer

2016-06-15 Thread nghosh
From: Nirapada Ghosh The probe timer between ovn-controller and OVN Southbound can be configured using ovn-vsctl command, but that is not effective on the fly. In other words, ovn-controller has to be restarted to use that probe_timer value, this patch takes care of that. This change has been te

[ovs-dev] (no subject)

2016-06-15 Thread dev-bounces
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] (no subject)

2016-06-15 Thread dev-bounces
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Rapid-Acting Supplement For Outstanding Results

2016-06-15 Thread dev
Are you tired of the excess weight and would like to get back on track without any painful efforts? Brand-new formula and advanced structure of our exclusive product will compliment your results and will help you to lose weight with no side-effects. Click Here! Stock is limited, make sure to

Re: [ovs-dev] [PATCH V8] ovn-controller: reload configured SB probetimer

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/14/2016 07:13:54 PM: > From: Nirapada Ghosh/San Jose/IBM@IBMUS > To: dev@openvswitch.org > Date: 06/14/2016 07:14 PM > Subject: [ovs-dev] [PATCH V8] ovn-controller: reload configured SB probe timer > Sent by: "dev" > > The probe timer between ovn-controller and OVN Southbound

[ovs-dev] [PATCH V6] Function tracer to trace all function calls

2016-06-15 Thread nghosh
In some circumstances, we might need to figure out where in code, the CPU time is being spent most, so as to pinpoint the bottleneck and thereby resolve it with proper changes. Using '-finstrument-functions' flag, that can be achieved, and this patch exactly does that. There is a python file [gene

Re: [ovs-dev] [PATCH v2 0/4] OVN DHCP support proposal

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/15/2016 04:16:44 AM: > From: Numan Siddique > To: ovs dev > Date: 06/15/2016 04:17 AM > Subject: [ovs-dev] [PATCH v2 0/4] OVN DHCP support proposal > Sent by: "dev" > > v1 -> v2 changes > > > * Rebased the patches > > * Patches 1 and 2 are from Ben and no

[ovs-dev] (no subject)

2016-06-15 Thread dev-bounces
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Delivery reports about your e-mail

2016-06-15 Thread john
`{»f‰Y¥º_Ý4àÝӌr”O¹]ÒÀÚ|<ûO9°WxøÑn7àòûV†®²øbOY_Ô`ë¬å)t”¡»ø¼ÁQºÐø¢<蟝û":eÑ`Öf!«°þE#4¡ŠÁ  G0Éz"P˜ÞEãð…jäÊùäZzÅU7*I•íF½Ö÷· eâ8ô¥à¹¼æ0©6j/yâ£;Xü–3÷m„'ͅ:GœøÈ Ñ4ˆÕ$˜‹7îÑdN¯™ Êm•<èqФHbÜkÐJ3•8?š:ʝzÔÍI—… ÎF;ÒuŒ{ºVêi0ñO”,Ép'ìOŒrîrì„à׃ëeJvzˆi6E9_Cá'Éyô•ãîZJCì¢h„˜ggZίHf|ôÑä©O6ºætÝ󱹖…c—¢}»GÂ

[ovs-dev] (no subject)

2016-06-15 Thread dev-bounces
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH v2 2/2] netdev-dpdk: Support user-defined socket attribs

2016-06-15 Thread Ben Pfaff
On Mon, Jun 13, 2016 at 05:36:34PM -0400, Aaron Conole wrote: > > If these limitations are unacceptable, I can see how we can use > > chmod. After all, as you point out, it's probably better to do it > > in OVS than in some script. > > I think fchmod and fchown may actually be the correct calls t

Re: [ovs-dev] [PATCH] [PATCH, v4, 1/2] ovn-controller: Add 'na' action for ND

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/14/2016 10:09:37 PM: > From: Zong Kai LI > To: dev@openvswitch.org > Cc: Zong Kai LI > Date: 06/14/2016 10:11 PM > Subject: [ovs-dev] [PATCH] [PATCH, v4, 1/2] ovn-controller: Add 'na' > action for ND > Sent by: "dev" > > This patch adds a new OVN action 'na' to support ND v

Re: [ovs-dev] [patch_v2] ovn: Fix receive from vxlan in ovn-controller.

2016-06-15 Thread Darrell Ball
On Tue, Jun 14, 2016 at 8:28 AM, Ryan Moats wrote: > "dev" wrote on 06/08/2016 04:30:34 PM: > > > From: Darrell Ball > > To: dlu...@gmail.com, d...@openvswitch.com > > Date: 06/08/2016 04:31 PM > > Subject: [ovs-dev] [patch_v2] ovn: Fix receive from vxlan in > ovn-controller. > > Sent by: "dev"

Re: [ovs-dev] [PATCH V5] Function tracer to trace all function calls

2016-06-15 Thread Ryan Moats
"dev" wrote on 06/14/2016 08:58:33 PM: > From: Daniele Di Proietto > To: Nirapada Ghosh/San Jose/IBM@IBMUS > Cc: "dev@openvswitch.org" > Date: 06/14/2016 08:59 PM > Subject: Re: [ovs-dev] [PATCH V5] Function tracer to trace all function calls > Sent by: "dev" > > Hi Nirapada, > > When optimi

Re: [ovs-dev] [PATCH v7 2/2] doc: Refactor DPDK install guide, add ADVANCED doc

2016-06-15 Thread Flavio Leitner
On Tue, Jun 14, 2016 at 11:33:41AM +0100, Bhanuprakash Bodireddy wrote: > Add INSTALL.DPDK-ADVANCED document that is forked off from original > INSTALL.DPDK guide. This document is targeted at users looking for > optimum performance on OVS using dpdk datapath. > > Signed-off-by: Bhanuprakash Bodir

Re: [ovs-dev] [PATCH v7 1/2] doc: Refactor DPDK install documentation

2016-06-15 Thread Flavio Leitner
On Tue, Jun 14, 2016 at 11:33:40AM +0100, Bhanuprakash Bodireddy wrote: > Refactor the INSTALL.DPDK in to two documents named INSTALL.DPDK and > INSTALL.DPDK-ADVANCED. While INSTALL.DPDK document shall facilitate the > novice user in setting up the OVS DPDK and running it out of box, the > ADVANCED

[ovs-dev] Clarification about flow tables

2016-06-15 Thread Amine Detter
Hello Team of open virtual switch, I'm working on OpenvSwitch 2.5.0 and i wanted to know how the rules are inserted in the flow table(because i saw subtables and each subtable contains a specific rules) and i want to know how the function classifier_lookup__() works ? thanks. Best regards. __

[ovs-dev] Returned mail: see transcript for details

2016-06-15 Thread Post Office
Your message could not be delivered ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Returned mail: see transcript for details

2016-06-15 Thread Mail Delivery Subsystem
The original message was received at Sun, 1 Jan 2006 05:36:58 +0530 from 152.65.204.57 - The following addresses had permanent fatal errors - dev@openvswitch.org ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo

[ovs-dev] Get Back On Track With Our Breakthrough Solution

2016-06-15 Thread wallis judas
Are you tired of the excess weight and would like to get back on track without any painful efforts? Brand-new formula and advanced structure of our exclusive product will compliment your results and will help you to lose weight with no side-effects. Click Here! Stock is limited, make sure to

Re: [ovs-dev] Faculty & Staff Re-validatie

2016-06-15 Thread Hans Dupont
? Van: Hans Dupont Verzonden: woensdag 15 juni 2016 01:15 Aan: Hans Dupont Onderwerp: Faculty & Staff Re-validatie Geachte Email Gebruikers Uw e-mailaccount zijn Opgehangen aan het verzenden en ontvangen van e-mail, Om opnieuw valideren van uw account, kunt u K

[ovs-dev] cooperation with an international company

2016-06-15 Thread augustin zhongmin
Hello! We are looking for employees working remotely. My name is Irma, am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5000. If you are interested in this offer, please visit Our Site Best regards!_

[ovs-dev] [PATCH v2 4/4] ovn-northd: Add logical flows to support native DHCP

2016-06-15 Thread Numan Siddique
OVN implements a native DHCP support which caters to the common use case of providing an IP address to a booting instance by providing stateless replies to DHCP requests based on statically configured address mappings. To do this it allows a short list of DHCP options to be configured and applied a

[ovs-dev] [PATCH v2 3/4] ovn-controller: Add 'put_dhcp_opts' action in ovn-controller

2016-06-15 Thread Numan Siddique
This patch adds a new OVN action 'put_dhcp_opts' to support native DHCP in OVN. ovn-controller parses this action and adds a NXT_PACKET_IN2 OF flow with 'pause' flag set and the DHCP options stored in 'userdata' field. When the valid DHCP packet is received by ovn-controller, it frames a new DHCP

[ovs-dev] [PATCH v2 0/4] OVN DHCP support proposal

2016-06-15 Thread Numan Siddique
v1 -> v2 changes * Rebased the patches * Patches 1 and 2 are from Ben and no changes. So not posting again. Please see * https://patchwork.ozlabs.org/patch/632633/ * https://patchwork.ozlabs.org/patch/632634/ * Patch 3 changes * Deleted the extra

Re: [ovs-dev] Faculty & Staff Re-validatie

2016-06-15 Thread Hans Dupont
? Van: Hans Dupont Verzonden: woensdag 15 juni 2016 01:15 Aan: Hans Dupont Onderwerp: Faculty & Staff Re-validatie Geachte Email Gebruikers Uw e-mailaccount zijn Opgehangen aan het verzenden en ontvangen van e-mail, Om opnieuw valideren van uw account, kunt u K