[ovs-dev] Gentile utente,

2015-02-25 Thread ADMIN
Gentile utente, Questo è per informarvi che qualcuno stava tentando di accedere al tuo account da una posizione diversa {IP:37. 187.138.129 e-mail Francia: 24/02/2015 02.36 GTM} Se non siete gentilmente seguire le seguenti istruzioni per aggiornare e verifica solo 12 ore dell'account per fare que

Re: [ovs-dev] [Qestion] netdev-dpdk: dpdk vhost ports

2015-02-25 Thread Loftus, Ciara
> On 02/24/2015 05:13 PM, Loftus, Ciara wrote: > > Hi Marcel, > > > > On 02/23/2015 12:57 PM, Marcel Apfelbaum wrote: > >> Hi, > > I CC-ed the developers that submitted the patch. > > Thanks again, > > Marcel > > > Hi, > Thank you for responding to my mail! You're welcome. > > > > >> > >> Regardi

Re: [ovs-dev] [PATCH 2/8] vswitch: Document columns that had been previously overlooked.

2015-02-25 Thread Daniele Venturino
Hi, > +STP and RSTP are mutually exclusive. If both are enabled, RSTP > +will be used. I think this might not be true. If it has not been changed, when STP or RSTP is enabled it should not be possible to enable the other one on the same bridge. This is done in bridge_c

[ovs-dev] [PATCH 4/5] dpif-provider: add class init function

2015-02-25 Thread Daniele Di Proietto
This init function is called when the dpif class is registered. It will be used by following commits Signed-off-by: Daniele Di Proietto --- lib/dpif-netdev.c | 1 + lib/dpif-netlink.c | 1 + lib/dpif-provider.h | 8 lib/dpif.c | 8 4 files changed, 18 insertions(+)

[ovs-dev] [PATCH 1/5] dpif-netdev: account for and free lost packets

2015-02-25 Thread Daniele Di Proietto
Packets for which an upcall has failed (lost packets) must be deleted. We also need to count them as MISS and LOST. Signed-off-by: Daniele Di Proietto --- lib/dpif-netdev.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c index 54bad02..47f81d3 100644

[ovs-dev] [PATCH 3/5] dpif-netdev: added simple per pmd-thread cycles counters

2015-02-25 Thread Daniele Di Proietto
The counters use x86 TSC if available (currently only with DPDK). They will be exposed by subsequents commits Signed-off-by: Daniele Di Proietto --- lib/dpif-netdev.c | 67 ++- 1 file changed, 66 insertions(+), 1 deletion(-) diff --git a/lib/d

[ovs-dev] [PATCH 2/5] dpif-netdev: count exact match cache hits

2015-02-25 Thread Daniele Di Proietto
We used to count exact match cache hits and masked classifier hits together. This commit splits the DP_STAT_HIT counter into two. This change will be used by future commits. Signed-off-by: Daniele Di Proietto --- lib/dpif-netdev.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletion

[ovs-dev] [PATCH 5/5] dpif-netdev: Add dpif-netdev/pmd-stats-* appctl commands

2015-02-25 Thread Daniele Di Proietto
These commands can be used to get packets and cycles counters on a pmd thread basis. They're useful to get a clearer picture about the performance of the userspace datapath. They export these pieces of information: - A (per-thread) view of the caches hit rate. Hits in the exact match cache are

[ovs-dev] [PATCH] json: Fix error message for corner case in json_string_unescape().

2015-02-25 Thread Ben Pfaff
The error message should not include bytes already copied from the input string. Found by inspection. Signed-off-by: Ben Pfaff --- lib/json.c | 3 ++- tests/ovsdb-data.at | 8 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/json.c b/lib/json.c index f004771.

[ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-02-25 Thread Daniele Di Proietto
With this commit the '--dpdk' option doesn't need to be at the beginning of the command line. Furthermode, the code that calls 'rte_eal_init()' can be slightly simplified by using the 'optind' variable. The change is totally backward compatible Documentation and manpages are updated accordingly.

[ovs-dev] [PATCH] learn: Fix buffer overflow in parsing "learn" action strings.

2015-02-25 Thread Ben Pfaff
Don't panic, this is not a remote buffer overflow, only a bug in a program parsing its input from the command line or a file. Found by inspection. Signed-off-by: Ben Pfaff --- lib/learn.c| 6 +- tests/learn.at | 14 ++ 2 files changed, 19 insertions(+), 1 deletion(-) diff

Re: [ovs-dev] [PATCH] OpenFlow 1.5 is final, so change OF1.5 draft references to just say OF1.5.

2015-02-25 Thread Jean Tourrilhes
On Tue, Feb 24, 2015 at 09:02:50PM -0800, Ben Pfaff wrote: > Reported-by: Jean Tourrilhes > Signed-off-by: Ben Pfaff Signed-off-by: Jean Tourrilhes Regards, Jean ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman

[ovs-dev] Darlehen für ernsthafte Personen Angebote

2015-02-25 Thread NINON Ildevert
Hallo Herr & Frau Ich bin ein einzelnen Anbietern der Mittel ist alle Menschen bedürfen nun wieder mir.Ich bietet Darlehen von € 10.000 bis € 10,00.Meine Bedingungen sind sehr klar und einfach so tun, Ihr Darlehen sowie die erschwerte Einsatzbedingungen. Bitte kontaktieren Sie mich

Re: [ovs-dev] [PATCH 5/5] dpif-netdev: Add dpif-netdev/pmd-stats-* appctl commands

2015-02-25 Thread Jarno Rajahalme
> On Feb 25, 2015, at 8:43 AM, Daniele Di Proietto > wrote: > > (snip) > > +enum pmd_info_type { > +PMD_INFO_SHOW_STATS, /* show how cpu cycles are spent */ > +PMD_INFO_CLEAR_STATS /* set the cycles count to 0 */ > +}; > + > +static void > +dpif_netdev_pmd_info(struct unixctl_conn

Re: [ovs-dev] [PATCH] OpenFlow 1.5 is final, so change OF1.5 draft references to just say OF1.5.

2015-02-25 Thread Ben Pfaff
On Wed, Feb 25, 2015 at 09:36:12AM -0800, Jean Tourrilhes wrote: > On Tue, Feb 24, 2015 at 09:02:50PM -0800, Ben Pfaff wrote: > > Reported-by: Jean Tourrilhes > > Signed-off-by: Ben Pfaff > > Signed-off-by: Jean Tourrilhes Thanks, Jean! I guess you meant Acked-by:, so I changed it to that and

Re: [ovs-dev] [PATCH] OpenFlow 1.5 is final, so change OF1.5 draft references to just say OF1.5.

2015-02-25 Thread Jean Tourrilhes
On Wed, Feb 25, 2015 at 11:43:58AM -0800, Ben Pfaff wrote: > On Wed, Feb 25, 2015 at 09:36:12AM -0800, Jean Tourrilhes wrote: > > On Tue, Feb 24, 2015 at 09:02:50PM -0800, Ben Pfaff wrote: > > > Reported-by: Jean Tourrilhes > > > Signed-off-by: Ben Pfaff > > > > Signed-off-by: Jean Tourrilhes >

Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-02-25 Thread Ben Pfaff
On Wed, Feb 25, 2015 at 04:47:09PM +, Daniele Di Proietto wrote: > With this commit the '--dpdk' option doesn't need to be at the beginning > of the command line. Furthermode, the code that calls 'rte_eal_init()' > can be slightly simplified by using the 'optind' variable. The change is > total

[ovs-dev] [patch 1/2] mm: remove GFP_THISNODE

2015-02-25 Thread David Rientjes
NOTE: this is not about __GFP_THISNODE, this is only about GFP_THISNODE. GFP_THISNODE is a secret combination of gfp bits that have different behavior than expected. It is a combination of __GFP_THISNODE, __GFP_NORETRY, and __GFP_NOWARN and is special-cased in the page allocator slowpath to fail

Re: [ovs-dev] [patch 1/2] mm: remove GFP_THISNODE

2015-02-25 Thread Christoph Lameter
On Wed, 25 Feb 2015, David Rientjes wrote: > NOTE: this is not about __GFP_THISNODE, this is only about GFP_THISNODE. Well but then its not removing it. You are replacing it with an inline function. > + > +/* > + * Construct gfp mask to allocate from a specific node but do not invoke > reclaim

Re: [ovs-dev] [patch 1/2] mm: remove GFP_THISNODE

2015-02-25 Thread David Rientjes
On Wed, 25 Feb 2015, Christoph Lameter wrote: > On Wed, 25 Feb 2015, David Rientjes wrote: > > > NOTE: this is not about __GFP_THISNODE, this is only about GFP_THISNODE. > > Well but then its not removing it. You are replacing it with an inline > function. > Removing GFP_THISNODE, not __GFP_TH

[ovs-dev] Small pill for big deal! Make your deal bigger!

2015-02-25 Thread Damian Finch
If you are not tripped out to buy those medicines from TV ads, you’ll understand me. http://urla.ru/1Hmy ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] [PATCH] util: Fix typo in comment.

2015-02-25 Thread Ben Pfaff
Signed-off-by: Ben Pfaff --- lib/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util.c b/lib/util.c index 6b51fa8..5edeaf2 100644 --- a/lib/util.c +++ b/lib/util.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc. + * C

[ovs-dev] [PATCH ovn 2/3] meta-flow: Add convenience members to union mf_subvalue.

2015-02-25 Thread Ben Pfaff
This makes access to the least-significant bits more convenient. This commit simplifies a few existing cases; later commits will make more use of this feature. Signed-off-by: Ben Pfaff --- lib/learn.c | 6 ++ lib/meta-flow.h | 18 +- 2 files changed, 19 insertions(+), 5

[ovs-dev] [PATCH ovn 0/3] OVN branching proposal

2015-02-25 Thread Ben Pfaff
OVN is going to take a considerable amount of development. I don't expect its development to break existing OVS functionality, since it's going to take place largely in new files and directories, but it's also not going to add anything useful to OVS until there's a lot of new code. To reduce the

[ovs-dev] [PATCH ovn 1/3] ovn: Add initial design documentation.

2015-02-25 Thread Ben Pfaff
This commit adds preliminary design documentation for Open Virtual Network, or OVN, a new OVS-based project to add support for virtual networking to OVS, initially with OpenStack integration. This initial design has been influenced by many people, including (in alphabetical order) Aaron Rosen, Chr

[ovs-dev] [PATCH ovn 3/3] lex: New lexical analyzer module for use in OVN.

2015-02-25 Thread Ben Pfaff
I'm determined not to let the terrible style of pseudo-parsing we have in OVS leak into OVN. Here's the first step. Signed-off-by: Ben Pfaff --- ovn/TODO | 5 - ovn/automake.mk| 3 + ovn/lex.c | 688 + ovn/lex.h

Re: [ovs-dev] [PATCH] util: Fix typo in comment.

2015-02-25 Thread Justin Pettit
If you're in there, I'd add a "the" before "number", but: Acked-by: Justin Pettit --Justin > On Feb 25, 2015, at 9:06 PM, Ben Pfaff wrote: > > Signed-off-by: Ben Pfaff > --- > lib/util.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lib/util.c b/lib/util.c > i

Re: [ovs-dev] [PATCH ovn 0/3] OVN branching proposal

2015-02-25 Thread Justin Pettit
> On Feb 25, 2015, at 9:13 PM, Ben Pfaff wrote: > > OVN is going to take a considerable amount of development. I don't expect > its development to break existing OVS functionality, since it's going to > take place largely in new files and directories, but it's also not going to > add anything u

Re: [ovs-dev] [PATCH ovn 0/3] OVN branching proposal

2015-02-25 Thread Ben Pfaff
On Wed, Feb 25, 2015 at 10:10:17PM -0800, Justin Pettit wrote: > > > On Feb 25, 2015, at 9:13 PM, Ben Pfaff wrote: > > > > OVN is going to take a considerable amount of development. I don't expect > > its development to break existing OVS functionality, since it's going to > > take place largel

[ovs-dev] [PATCH] datapath: Fix return of uninitialized variable.

2015-02-25 Thread Alex Wang
This commit fixes a return of uninitialized variable bug. The bug can cause failures of operations like flow_add. Signed-off-by: Alex Wang --- datapath/flow_netlink.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/datapath/flow_netlink.c b/datapath/flow_netlink.c index

Re: [ovs-dev] [PATCH] datapath: Fix return of uninitialized variable.

2015-02-25 Thread Pravin Shelar
On Wed, Feb 25, 2015 at 10:41 PM, Alex Wang wrote: > This commit fixes a return of uninitialized variable bug. > The bug can cause failures of operations like flow_add. > > Signed-off-by: Alex Wang Looks good. Acked-by: Pravin B Shelar ___ dev mailing