[ovs-dev] (no subject)

2016-04-05 Thread nsvcardmodule
The original message was received at Wed, 6 Apr 2016 11:21:53 +0530 from 94.138.205.82 - The following addresses had permanent fatal errors - - Transcript of session follows - ... while talking to openvswitch.org.: 554 ... Message is too large 554 ... Service unavailable __

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

2016-04-05 Thread manish
Dear user of openvswitch.org, We have received reports that your account has been used to send a large amount of spam during the last week. Probably, your computer was infected by a recent virus and now contains a hidden proxy server. We recommend you to follow instructions in order to keep you

Re: [ovs-dev] [PATCH] SECURITY.md: Increase embargo period from 3-5 to 10-15 business days.

2016-04-05 Thread Flavio Leitner
On Thu, Mar 31, 2016 at 09:54:03PM -0700, Ben Pfaff wrote: > When we recently ran a genuine vulnerability through this process, we > discovered that 3-5 days was far too short. The business processes behind > releasing fixed versions of software at companies that use Open vSwitch > cannot cope wit

[ovs-dev] Question about ovn-controller CLEAR_FLOWS state

2016-04-05 Thread 张东亚
Hi list, Recently I am reading ovn source code, there are some STATES before OVN controller shift to UPDATE_FLOWS state, one state is named CLEAR_FLOWS, which seems clear all the flows in the ovs-vswitchd before programming new flows, IMHO this will cause short traffic disruption for the VM hosted

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

2016-04-05 Thread Bounced mail
The original message was received at Wed, 6 Apr 2016 11:09:29 +0800 from openvswitch.org [39.221.117.54] - The following addresses had permanent fatal errors - ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/d

Re: [ovs-dev] [PATCH 3/3] ovn: Add address_set() support for ACLs.

2016-04-05 Thread Han Zhou
On Tue, Apr 5, 2016 at 2:24 PM, Russell Bryant wrote: > > This feature was originally proposed here: > > http://openvswitch.org/pipermail/dev/2016-March/067440.html > > A common use case for OVN ACLs involves needing to match a set of IP > addresses. > >outport == "lp1" && ip4.src == {10.0.0

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

2016-04-05 Thread moishe
The original message was received at Wed, 6 Apr 2016 08:37:30 +0800 from [146.106.136.6] - The following addresses had permanent fatal errors - dev@openvswitch.org - Transcript of session follows - ... while talking to 87.33.81.218: >>> RCPT To: <<< 550 MAILBOX NOT FOUND ___

Re: [ovs-dev] [PATCH] valgrind: Fix memory leak at expr_error.

2016-04-05 Thread Justin Pettit
You're right; I was thinking that "ctx" was being handed to "expr_parse_field". I pushed the change to master. Thanks! --Justin > On Apr 5, 2016, at 3:51 PM, William Tu wrote: > > Hi Justin, > Thanks for the feedback. I think the original code is OK, although a little > misleading. > > A

Re: [ovs-dev] [PATCH] valgrind: Fix memory leak at expr_error.

2016-04-05 Thread William Tu
Hi Justin, Thanks for the feedback. I think the original code is OK, although a little misleading. At action_parse_field(), the address of *ctx is not passed into expr_parse_field. The expr_parse_field has a ctx as local variable on its stack. So when it returns, the 'error' contains a newly mallo

[ovs-dev] [PATCH v2] datapath-windows: cleanup after NdisRegisterDeviceEx()

2016-04-05 Thread Nithin Raju
The error handling code seems to be wrong. Signed-off-by: Nithin Raju --- datapath-windows/ovsext/Datapath.c | 12 ++-- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/datapath-windows/ovsext/Datapath.c b/datapath-windows/ovsext/Datapath.c index 464fa97..dc6baaa 100644 --

[ovs-dev] [PATCH 1/3] ovn-northd: Limit line length to under 80 columns.

2016-04-05 Thread Justin Pettit
Signed-off-by: Justin Pettit --- ovn/northd/ovn-northd.c | 34 +++--- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/ovn/northd/ovn-northd.c b/ovn/northd/ovn-northd.c index 4b1d611..302cc1d 100644 --- a/ovn/northd/ovn-northd.c +++ b/ovn/northd/ovn-nort

[ovs-dev] [PATCH 3/3] ovs-dpctl: Document conntrack "zone" arguments in help output.

2016-04-05 Thread Justin Pettit
Signed-off-by: Justin Pettit --- utilities/ovs-dpctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/ovs-dpctl.c b/utilities/ovs-dpctl.c index ba7fb8e..4897ea3 100644 --- a/utilities/ovs-dpctl.c +++ b/utilities/ovs-dpctl.c @@ -171,8 +171,8 @@ usage(void *userda

[ovs-dev] [PATCH 2/3] dpctl.man: Fix bolding for flush-conntrack command.

2016-04-05 Thread Justin Pettit
Signed-off-by: Justin Pettit --- lib/dpctl.man | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpctl.man b/lib/dpctl.man index 70df690..2fcbc94 100644 --- a/lib/dpctl.man +++ b/lib/dpctl.man @@ -175,7 +175,7 @@ are included. With \fB\-\-statistics\fR timeouts and timestam

Re: [ovs-dev] [PATCH] valgrind: Fix memory leak at expr_error.

2016-04-05 Thread Justin Pettit
> On Apr 4, 2016, at 2:51 PM, William Tu wrote: > > Reported by test case 2015: ovn -- action parsing. >xvasprintf (util.c:164) >expr_error (expr.c:489) >expr_parse_field (expr.c:2910) >action_parse_field (actions.c:287) > > Signed-off-by: William Tu > --- > ovn/lib/actions.c |

[ovs-dev] [PATCH] datapath-windows: cleanup after NdisRegisterDeviceEx()

2016-04-05 Thread Nithin Raju
The error handling code seems to be wrong. Signed-off-by: Nithin Raju --- datapath-windows/ovsext/Datapath.c | 12 ++-- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/datapath-windows/ovsext/Datapath.c b/datapath-windows/ovsext/Datapath.c index 464fa97..dc6baaa 100644 --

Re: [ovs-dev] SAI ofproto provider for OvS

2016-04-05 Thread Petr Machata
Ben Pfaff writes: > We would be pleased to take additional ofproto pr oviders as long as > they are clean and maintainable (and actually maintained). We would We will want to put forward code that is up to snuff. Regarding the "actually maintained" bit--that is the intention. But as you are pr

[ovs-dev] [PATCH 2/3] expr: Add address set support.

2016-04-05 Thread Russell Bryant
Update the OVN expression parser to support address sets. Previously, you could have a set of IP or MAC addresses in this form: {addr1, addr2, ..., addrN} This patch adds support for a bit of indirection where we can define a set of addresses and refer to them by name. address_set(name)

[ovs-dev] [PATCH 1/3] ovn-controller: Add missing shash_destroy().

2016-04-05 Thread Russell Bryant
expr_symtab_destroy() destroys the contents of the symtab shash, but not the shash itself. Add a missing shash_destroy() call in lflow_destroy(). Signed-off-by: Russell Bryant --- ovn/controller/lflow.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ovn/controller/lflow.c b/ovn/controller/

[ovs-dev] [PATCH 3/3] ovn: Add address_set() support for ACLs.

2016-04-05 Thread Russell Bryant
This feature was originally proposed here: http://openvswitch.org/pipermail/dev/2016-March/067440.html A common use case for OVN ACLs involves needing to match a set of IP addresses. outport == "lp1" && ip4.src == {10.0.0.5, 10.0.0.25, 10.0.0.50} This example match only has 3 addresses, bu

[ovs-dev] [PATCH 0/3] OVN address sets.

2016-04-05 Thread Russell Bryant
As originally proposed here: http://openvswitch.org/pipermail/dev/2016-March/067440.html Russell Bryant (3): ovn-controller: Add missing shash_destroy(). expr: Add address set support. ovn: Add address_set() support for ACLs. ovn/controller/lflow.c| 156 +

Re: [ovs-dev] [PATCH] Patch v2: OVN: Support BUM traffic in the VTEP schema

2016-04-05 Thread Darrell Ball
On Mon, Apr 4, 2016 at 2:50 PM, Justin Pettit wrote: > > > On Mar 25, 2016, at 12:04 AM, Darrell Ball wrote: > > Thanks for the patch. I did a quick review of the functionality, but > didn't do a full review yet. There are some style issues that I'd like to > see addressed before I do that. A

[ovs-dev] Patch v3: ovn-controller-vtep: Support BUM traffic for the VTEP Schema

2016-04-05 Thread Darrell Ball
This patch implements BUM support in the VTEP schema. This relates to BUM traffic flowing from a gateway towards HVs. This code would be relevant to HW gateways and the ovs-vtep simulator. In order to do this, the mcast macs remote table in the VTEP schema is populated based on the OVN SB port bi

[ovs-dev] [PATCH] Patch v3: ovn-controller-vtep: Support BUM traffic for the VTEP Schema

2016-04-05 Thread Darrell Ball
This patch implements BUM support in the VTEP schema. This relates to BUM traffic flowing from a gateway towards HVs. This code would be relevant to HW gateways and the ovs-vtep simulator. In order to do this, the mcast macs remote table in the VTEP schema is populated based on the OVN SB port bi

[ovs-dev] Network Security Users | Account Info

2016-04-05 Thread Sarah Bailey
Hi, Would you be interested in Network Security Users You can approach the Information Security Decision Makers from Technology & Security industry. We provide 100% accurate data of the Companies who are using the mentioned security system: *We also have the following Users:* ·

Re: [ovs-dev] [PATCH] checkpatch: Don't enforce char limit on tests.

2016-04-05 Thread Russell Bryant
On Tue, Apr 5, 2016 at 2:17 PM, Joe Stringer wrote: > Although tests ideally also stick to shorter line lengths, it is very > common for fixed text blocks like flows or large packets to be specified > within tests. Checkpatch shouldn't complain about cases like these. > > Signed-off-by: Joe Strin

[ovs-dev] [PATCH] checkpatch: Don't enforce char limit on tests.

2016-04-05 Thread Joe Stringer
Although tests ideally also stick to shorter line lengths, it is very common for fixed text blocks like flows or large packets to be specified within tests. Checkpatch shouldn't complain about cases like these. Signed-off-by: Joe Stringer --- utilities/checkpatch.py | 5 - 1 file changed, 4

Re: [ovs-dev] [PATCH] stt: linearize for CONFIG_SLUB case

2016-04-05 Thread Jesse Gross
On Mon, Apr 4, 2016 at 7:57 PM, pravin shelar wrote: > On Mon, Apr 4, 2016 at 1:56 PM, Jesse Gross wrote: >> On Fri, Apr 1, 2016 at 4:58 PM, pravin shelar wrote: >>> On Thu, Mar 31, 2016 at 9:06 PM, Jesse Gross wrote: On Thu, Mar 31, 2016 at 2:30 PM, Pravin B Shelar wrote: > diff --gi

[ovs-dev] [PATCH] datapath-windows: Improved offloading on STT tunnel

2016-04-05 Thread Paul Boca
Added OvsExtractLayers - populates only the layers field without unnecessary memory operations for flow part If in STT header the flags are 0 then force packets checksums calculation Ensure correct pseudo checksum is set for LSO both on send and receive Signed-off-by: Paul-Daniel Boca --- datapa

Re: [ovs-dev] [PATCH] build-windows: Update for msys

2016-04-05 Thread Nithin Raju
Acked-by: Nithin Raju -Original Message- From: dev on behalf of Alin Serdean Date: Tuesday, April 5, 2016 at 3:03 AM To: "dev@openvswitch.org" Subject: [ovs-dev] [PATCH] build-windows: Update for msys >Building under >msys2(https://urldefense.proofpoint.com/v2/url?u=https-3A__msys2.g

[ovs-dev] Advertencia buzón ha superado el límite de cuota

2016-04-05 Thread Administrador de sistema
Querido usuario,Su buzón ha superado el límite de la cuota establecida por el administrador, usted no será capaz de enviar o recibir correo hasta que vuelve a validar su cuenta.Por favor, haga clic en el siguiente enlace o copiar y pegar en tu navegador para validar su buzón de correo.http:/

[ovs-dev] Unpaid Bill for Car Repair Service 01A0

2016-04-05 Thread Dominick Mcdaniel
We kindly ask you to review our unpaid bill again and send us the payment in order to avoid additional costs. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH v3] Dynamically reconnect ovn-controller if ovn-remote value changes

2016-04-05 Thread Lance Richardson
- Original Message - > From: "Ryan Moats" > To: "Lance Richardson" > Cc: dev@openvswitch.org > Sent: Tuesday, April 5, 2016 11:20:52 AM > Subject: Re: [ovs-dev] [PATCH v3] Dynamically reconnect ovn-controller if > ovn-remote value changes > > [snipping for bandwidth] > > Lance Ri

Re: [ovs-dev] [PATCH v2 1/1] ovn: Add column enabled to table Logical_Router

2016-04-05 Thread Ryan Moats
"dev" wrote on 04/05/2016 08:43:26 AM: > From: "Na Zhu" > To: dev@openvswitch.org, russ...@ovn.org > Date: 04/05/2016 08:45 AM > Subject: [ovs-dev] [PATCH v2 1/1] ovn: Add column enabled to table > Logical_Router > Sent by: "dev" > > This patch add column "enabled" to table Logical_Router > for

[ovs-dev] [PATCH v4] Dynamically reconnect ovn-controller if ovn-remote value changes

2016-04-05 Thread Ryan Moats
From: RYAN D. MOATS Allows for auto detection and reconnect if the ovn-remote needs to change. Ovn-controller test case updated to include testing this code. Signed-off-by: RYAN D. MOATS --- lib/ovsdb-idl.c | 16 lib/ovsdb-idl.h |1 + ovn

Re: [ovs-dev] [PATCH v3] Dynamically reconnect ovn-controller if ovn-remote value changes

2016-04-05 Thread Ryan Moats
[snipping for bandwidth] Lance Richardson wrote on 04/05/2016 09:36:06 AM: > > diff --git a/lib/ovsdb-idl.c b/lib/ovsdb-idl.c > > index 3ab05a3..24c536d 100644 > > --- a/lib/ovsdb-idl.c > > +++ b/lib/ovsdb-idl.c > > @@ -272,6 +272,22 @@ ovsdb_idl_create(const char *remote, const struct > > ovsdb

Re: [ovs-dev] SAI ofproto provider for OvS

2016-04-05 Thread Ben Pfaff
On April 4, 2016 6:36:53 PM MDT, Petr Machata wrote: >Hello, > >Mellanox would like to implement an OvS ofproto provider for SAI[1], a >vendor-neutral C API for programming switch ASIC's. Would there be >interest in merging this work upstream eventually? > >We are not asking for a blank check her

[ovs-dev] [CudaMailTagged] Advertencia buzón ha superado el límite de cuota

2016-04-05 Thread Administrador de sistema
Querido usuario, Su buzón ha superado el límite de la cuota establecida por el administrador, usted no será capaz de enviar o recibir correo hasta que vuelve a validar su cuenta. Por favor, haga clic en el siguiente enlace o copiar y pegar en tu navegador para validar su buzón de correo. htt

Re: [ovs-dev] [PATCH v3] Dynamically reconnect ovn-controller if ovn-remote value changes

2016-04-05 Thread Lance Richardson
- Original Message - > From: "Ryan Moats" > To: dev@openvswitch.org > Sent: Tuesday, April 5, 2016 9:53:44 AM > Subject: [ovs-dev] [PATCH v3] Dynamically reconnect ovn-controller if > ovn-remote value changes > > From: RYAN D. MOATS > > Allows for auto detection and reconnect if the ov

[ovs-dev] [PATCH v3] Dynamically reconnect ovn-controller if ovn-remote value changes

2016-04-05 Thread Ryan Moats
From: RYAN D. MOATS Allows for auto detection and reconnect if the ovn-remote needs to change. Ovn-controller test case updated to include testing this code. v2->v3: Addressed Ben's comments from [1] Moved check of remote to head of main loop. Created ovsdb_idl_set_remote to handle cha

Re: [ovs-dev] [PATCH v2 1/1] ovn: Add column enabled to table Logical_Router

2016-04-05 Thread Russell Bryant
On Tue, Apr 5, 2016 at 9:43 AM, Na Zhu wrote: > This patch add column "enabled" to table Logical_Router > for setting router administrative state. > > The type of "enabled" is bool. > > If the administrative state is false, delete all the flows > relevant to the logical router from table Logical_

[ovs-dev] [PATCH v2 1/1] ovn: Add column enabled to table Logical_Router

2016-04-05 Thread Na Zhu
This patch add column "enabled" to table Logical_Router for setting router administrative state. The type of "enabled" is bool. If the administrative state is false, delete all the flows relevant to the logical router from table Logical_Flow. Signed-off-by: Na Zhu Acked-by: --- ovn/northd/ovn-

[ovs-dev] Actual Status on Your Balance 94653

2016-04-05 Thread Clareta Pockley
Please find attached your actual statement for the period of 02/2016 to 03/2016. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Give YOUR Boss The Finger - Yeah, THAT Finger

2016-04-05 Thread dev
Hey, Can I ask you a question? Are you interested in making money from home? Would you like to have a second income? If so, what if I could show you a fool-proof way to turn $100 into $300 ... over and over again, as many times as you wanted. What's more, you could start making money in 15 mi

Re: [ovs-dev] [PATCH 1/1] ovn: Add column enabled to table Logical_Router

2016-04-05 Thread Na Zhu
Hi Russell, Really appreciate your comments. Will update soon. Regards, Juno Zhu IBM China Development Labs (CDL) Cloud IaaS Lab Email: na...@cn.ibm.com 5F, Building 10, 399 Keyuan Road, Zhangjiang Hi-Tech Park, Pudong New District, Shanghai, China (201203) From: Russell Bryant To: N

Re: [ovs-dev] [PATCH 1/1] ovn: Add column enabled to table Logical_Router

2016-04-05 Thread Russell Bryant
On Tue, Apr 5, 2016 at 6:54 AM, Na Zhu wrote: > This patch add column "enabled" to table Logical_Router for setting router > administrative state. > > The type of "enabled" is bool. > > If the administrative state is false, delete all the flows relevant to the > > logical router from table Logica

Re: [ovs-dev] Is there any release plan about networking-ovn

2016-04-05 Thread Russell Bryant
On Mon, Apr 4, 2016 at 11:27 PM, Na Zhu wrote: > Hi all, > > Since neutron M will be released, will networking-ovn be released in M > together with neutron M? > We weren't planning on it. We could easily tag a release if that was helpful, but we were not planning to maintain a stable/mitaka bra

Re: [ovs-dev] [PATCH v1 RFC] ovn: Support native dhcp using 'continuations'

2016-04-05 Thread Numan Siddique
On Tue, Apr 5, 2016 at 12:17 AM, Ramu Ramamurthy wrote: > > @@ -89,10 +89,11 @@ enum ovn_stage { > > PIPELINE_STAGE(SWITCH, IN, PORT_SEC_L2,0, > "ls_in_port_sec_l2") \ > > PIPELINE_STAGE(SWITCH, IN, PORT_SEC_IP,1, > "ls_in_port_sec_ip") \ > > PIPELINE_STAGE(SWITCH

Re: [ovs-dev] [PATCH v1 RFC] ovn: Support native dhcp using'continuations'

2016-04-05 Thread Numan Siddique
On Mon, Apr 4, 2016 at 8:10 PM, Ryan Moats wrote: > Russell Bryant wrote on 04/04/2016 09:27:30 AM: > > > From: Russell Bryant > > To: Ryan Moats/Omaha/IBM@IBMUS > > Cc: Numan Siddique , ovs dev > > Date: 04/04/2016 09:28 AM > > Subject: Re: [ovs-dev] [PATCH v1 RFC] ovn: Support native dhcp >

[ovs-dev] 无法接收您的邮件/Refused to receive your e-mail

2016-04-05 Thread postmaster
*Please scroll down for English.* dev@openvswitch.org,您好: 您发送的邮件带有病毒,系统无法接收。请检查您的电脑是否中毒。谢谢! 原邮件信息 From: dev@openvswitch.org To: liq...@xianmetals.com Subject: zbmtvas Date: Tue, 5 Apr 2016 19:07:20 +0800 Dear dev@openvswitch.org, The message you sent was found virus-infected and prevented from

[ovs-dev] [PATCH 1/1] ovn: Add column enabled to table Logical_Router

2016-04-05 Thread Na Zhu
This patch add column "enabled" to table Logical_Router for setting router administrative state. The type of "enabled" is bool. If the administrative state is false, delete all the flows relevant to the logical router from table Logical_Flow. Signed-off-by: Na Zhu Reported-by: Na Zhu Reporte

[ovs-dev] [PATCH] build-windows: Update for msys

2016-04-05 Thread Alin Serdean
Building under msys2(https://msys2.github.io/) revealed a small bug while defining the path separator. Signed-off-by: Alin Gabriel Serdean --- m4/absolute-header.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/absolute-header.m4 b/m4/absolute-header.m4 index 89ff5be..bd

[ovs-dev] Mail System Error - Returned Mail

2016-04-05 Thread daniel . glazman
The original message was received at Tue, 5 Apr 2016 15:25:21 +0530 from [145.147.254.171] - The following addresses had permanent fatal errors - ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Safety Product Distributorship Available

2016-04-05 Thread Todd
26 Year Old U.S. Manufacturer Needs Additional Distributors Worldwide Proven, Unique Floor Safety Products Used by McDonalds, Burger King, KFC, Hilton, Sheraton, Holiday Inn, Mercedes, BMW, Toyota, Pfizer, etc. Required - $3,000 USD - $5,000 USD Inventory Investment Send for Website Address.

[ovs-dev] Read PRIVATE MESSAGE of Cordula Lindell left FOR Dev

2016-04-05 Thread Cordula S .
Unless you both hands were the bedroom.Salut sweety bear .i found your photos in twitter.. You are handsome ..i'm looking for a handsome guy to h00kup withThe screen name is Cordula1979..the page is - http://tkhjlsfr。HighVoltageDating。ru?acc=Cordula1979You can put you cock wherever you'd like

[ovs-dev] RETURNED MAIL: DATA FORMAT ERROR

2016-04-05 Thread Bounced mail
___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Dev@openvswitch.org

2016-04-05 Thread Returned mail
The original message was received at Tue, 5 Apr 2016 16:11:03 +0800 from openvswitch.org [17.127.160.79] - The following addresses had permanent fatal errors - dev@openvswitch.org - Transcript of session follows - ... while talking to 145.89.91.164: 554 ... Mail quota exceeded 55

[ovs-dev] [PATCH v3] debian : upstream_version fix

2016-04-05 Thread Zoltán Balogh
From: The Debian Policy Manual (https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version) says that the upstream_version may contain only alphanumerics and the characters . + - : ~ (full stop, plus, hyphen, colon, tilde) and should start with a digit. Currently, the upstre

[ovs-dev] Mail System Error - Returned Mail

2016-04-05 Thread Mail Administrator
The original message was received at Tue, 5 Apr 2016 15:16:36 +0800 from 136.100.241.251 - The following addresses had permanent fatal errors - - Transcript of session follows - ... while talking to 125.188.238.25: >>> MAIL From:"Mail Administrator" <<< 505 Access denied _

[ovs-dev] You are owed $26,512

2016-04-05 Thread dev
Hey, Can I ask you a question? Are you interested in making money from home? Would you like to have a second income? If so, what if I could show you a fool-proof way to turn $100 into $300 ... over and over again, as many times as you wanted. What's more, you could start making money in 15 mi