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
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
>"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
"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
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
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
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
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
>>
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
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
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
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
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
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!
__
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
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
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
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
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
"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
"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
"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
"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
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
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
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
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
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.
>
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
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
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
> > --
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
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/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
"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
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
"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
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
`{»fY¥º_Ý4àÝÓrO¹]ÒÀÚ|<ûO9°WxøÑn7àòûV®²øbOY_Ô`ë¬å)t¡»ø¼ÁQºÐø¢<èû":ïºeÑ`Öf!«°þE#4¡Á
G0Éz"PÞEãð
jäÊùäZzÅU7*IíF½Ö÷· eâ8ô¥à¹¼æ0©6j/yâ£;Xü3÷m'Í
:GøÈ
Ñ4Õ$7îÑdN¯ Êm<èqФHbÜkÐJ38?:ÊzÔÍI
ÎF;Òu{ºVêi0ñO,Ép'ìOrîrìà×ëeJvzi6E9_Cá'ÉyôãîZJCì¢hggZίHf|ôÑä©O6ºætÝó±¹
c¢}»GÂ
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
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
"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
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"
"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
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
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
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.
__
Your message could not be delivered
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
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
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
?
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
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!_
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
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
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
?
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
57 matches
Mail list logo