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
__
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
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
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
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
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
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
___
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
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
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
--
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
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
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
> 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 |
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
--
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
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)
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/
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
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 +
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
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
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
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:*
·
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
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
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
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
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
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:/
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
- 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
"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
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
[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
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
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
- 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
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
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_
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-
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
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
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
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
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
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
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
>
*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
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
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
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
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.
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
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
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
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
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
_
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
59 matches
Mail list logo