[ovs-dev] [PATCH v10] ovn-nbctl: Add LB commands.

2016-10-03 Thread nickcooper-zhangtonghao
This patch provides the command line to create a load balancer. You can create a load balancer independently and add it to multiple switches or routers. A single load balancer can have multiple vips. Add a name column for the load balancer. With --add-duplicate, the command really creates a new loa

[ovs-dev] ovn-nbctl: Add LB commands.

2016-10-03 Thread nickcooper-zhangtonghao
I have submitted the v10 patch, which can parse the ips (e.g. ",,,192.168.10.1,,,” “,,,192.168.10.1,,,192.168.10.2,,,192.168.10.3,,,”). This patch fixes the memory leak. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/de

[ovs-dev] [PATCH v2] ovsdb-monitor tests: Allow '--detach' argument to be used on Windows

2016-10-03 Thread Alin Serdean
This patch updates the ovsdb monitor tests to use it. The --detach argument is needed to make the unixctl for the ovsdb-client, to send commands. Fixes hanging test: 1889: monitor-cond-change Signed-off-by: Alin Gabriel Serdean --- v2: Reduce the scope of --detach. Test several times to make su

[ovs-dev] Hugepages allocation

2016-10-03 Thread Kapil Adhikesavalu
Hi, 1. in INSTALL.DPDK.md, huge page size is recommended as 2MB pages. Earlier i remember seeing some reference to use 1GB huge pages. is there any noticeable performance improvement in using 1G hugepages vs 2M pages ? 2. is there a way to allocate 1G hugepages using sysctl. Default hugepage size

Re: [ovs-dev] Hugepages allocation

2016-10-03 Thread Bodireddy, Bhanuprakash
>-Original Message- >From: dev [mailto:dev-boun...@openvswitch.org] On Behalf Of Kapil >Adhikesavalu >Sent: Monday, October 3, 2016 12:07 PM >To: dev@openvswitch.org; disc...@openvswitch.org >Subject: [ovs-dev] Hugepages allocation > >Hi, > >1. in INSTALL.DPDK.md, huge page size is recomme

Re: [ovs-dev] Hugepages allocation

2016-10-03 Thread Kapil Adhikesavalu
Hi Bhanuprakash, Thanks for the info. Helpful! Regards Kapil. On Mon, Oct 3, 2016 at 5:41 PM, Bodireddy, Bhanuprakash < bhanuprakash.bodire...@intel.com> wrote: > > >-Original Message- > >From: dev [mailto:dev-boun...@openvswitch.org] On Behalf Of Kapil > >Adhikesavalu > >Sent: Monday,

[ovs-dev] [PATCH] ovn-controller tests: Windows does not register "tap"

2016-10-03 Thread Alin Serdean
On Windows we do not register "tap" as an interface type since it is not supported. Signed-off-by: Alin Gabriel Serdean --- tests/ovn-controller.at | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/ovn-controller.at b/tests/ovn-controller.at index 00ee482..b1211a5 10

[ovs-dev] [PATCH 2/2] Fix memory leak in nbctl_lrp_add.

2016-10-03 Thread nickcooper-zhangtonghao
Signed-off-by: nickcooper-zhangtonghao --- ovn/utilities/ovn-nbctl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ovn/utilities/ovn-nbctl.c b/ovn/utilities/ovn-nbctl.c index 563c6ec..71cffda 100644 --- a/ovn/utilities/ovn-nbctl.c +++ b/ovn/utilities/ovn-nbctl.c @@ -1810,6 +1810,8 @@ nbct

[ovs-dev] [PATCH 1/2] ovn-nbctl: check the length of MAC address

2016-10-03 Thread nickcooper-zhangtonghao
The command "ovn-nbctl lrp-add" should not set the MAC address which length is invalid to logical router port. This patch also updates the ovn-nbctl tests. Signed-off-by: nickcooper-zhangtonghao --- ovn/utilities/ovn-nbctl.c | 7 ++- tests/ovn-nbctl.at| 7 +++ 2 files changed, 13

Re: [ovs-dev] [PATCH] tests/bundle: test bundle action with ports up and down

2016-10-03 Thread Ben Pfaff
On Fri, Sep 30, 2016 at 06:53:37PM -0300, Thadeu Lima de Souza Cascardo wrote: > Also, add the keyword bundle_action to all the tests in bundle.at, > distinguishing it from OF bundles. > > It came to my attention recently that bundle_load will load 0x in case all > the slaves are down, as bund

Re: [ovs-dev] [PATCH] tests/bundle: test bundle action with ports up and down

2016-10-03 Thread Thadeu Lima de Souza Cascardo
On Mon, Oct 03, 2016 at 10:10:27AM -0700, Ben Pfaff wrote: > On Fri, Sep 30, 2016 at 06:53:37PM -0300, Thadeu Lima de Souza Cascardo wrote: > > Also, add the keyword bundle_action to all the tests in bundle.at, > > distinguishing it from OF bundles. > > > > It came to my attention recently that bu

[ovs-dev] [PATCH 2/3] Fix memory leak in nbctl_lr_route_add.

2016-10-03 Thread nickcooper-zhangtonghao
Signed-off-by: nickcooper-zhangtonghao --- ovn/utilities/ovn-nbctl.c | 11 ++- tests/ovn-nbctl.at| 16 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/ovn/utilities/ovn-nbctl.c b/ovn/utilities/ovn-nbctl.c index 7de8057..179c9eb 100644 --- a/ovn/util

[ovs-dev] [PATCH 1/3] remove unreachable code.

2016-10-03 Thread nickcooper-zhangtonghao
Signed-off-by: nickcooper-zhangtonghao --- ovn/utilities/ovn-nbctl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ovn/utilities/ovn-nbctl.c b/ovn/utilities/ovn-nbctl.c index 71cffda..7de8057 100644 --- a/ovn/utilities/ovn-nbctl.c +++ b/ovn/utilities/ovn-nbctl.c @@ -1113,7 +1113,6 @@ nbctl

[ovs-dev] [PATCH 3/3] Fix memory leak in nbctl_lr_route_del.

2016-10-03 Thread nickcooper-zhangtonghao
Signed-off-by: nickcooper-zhangtonghao --- ovn/utilities/ovn-nbctl.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ovn/utilities/ovn-nbctl.c b/ovn/utilities/ovn-nbctl.c index 179c9eb..3f31047 100644 --- a/ovn/utilities/ovn-nbctl.c +++ b/ovn/utilities/ovn-nbctl.c @@ -1699

Re: [ovs-dev] [patch_v2 1/3] ovn: Skip logical switch "router type" port arp responder install.

2016-10-03 Thread Han Zhou
On Sun, Oct 2, 2016 at 2:14 PM, Darrell Ball wrote: > > > > On Sun, Oct 2, 2016 at 11:27 AM, Han Zhou wrote: >> >> On Sat, Oct 1, 2016 at 4:34 PM, Darrell Ball wrote: >> > >> > Do not install any potential logical switch "router type" >> > port arp responders. Logical router port arp responders

Re: [ovs-dev] [PATCH] ovn-controller tests: Windows does not register "tap"

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 02:50:54PM +, Alin Serdean wrote: > On Windows we do not register "tap" as an interface type since it is not > supported. > > Signed-off-by: Alin Gabriel Serdean Thanks, applied to master and branch-2.6. ___ dev mailing list

Re: [ovs-dev] [PATCH 1/2] ovn-nbctl: check the length of MAC address

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 08:19:08AM -0700, nickcooper-zhangtonghao wrote: > The command "ovn-nbctl lrp-add" should not set the MAC address > which length is invalid to logical router port. This patch also > updates the ovn-nbctl tests. > > Signed-off-by: nickcooper-zhangtonghao > It's probably b

[ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker

2016-10-03 Thread Hui Kang
Signed-off-by: Hui Kang --- INSTALL.Docker.md | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/INSTALL.Docker.md b/INSTALL.Docker.md index b62922d..5cb49d0 100644 --- a/INSTALL.Docker.md +++ b/INSTALL.Docker.md @@ -69,6 +69,8 @@ gets cleared. It is harmless to run it a

Re: [ovs-dev] [PATCH 2/2] Fix memory leak in nbctl_lrp_add.

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 08:19:09AM -0700, nickcooper-zhangtonghao wrote: > Signed-off-by: nickcooper-zhangtonghao > > --- > ovn/utilities/ovn-nbctl.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/ovn/utilities/ovn-nbctl.c b/ovn/utilities/ovn-nbctl.c > index 563c6ec..71cffda 100644

Re: [ovs-dev] [PATCH 1/3] remove unreachable code.

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 10:52:00AM -0700, nickcooper-zhangtonghao wrote: > Signed-off-by: nickcooper-zhangtonghao > Applied, thanks! ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [PATCH 2/3] Fix memory leak in nbctl_lr_route_add.

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 10:52:01AM -0700, nickcooper-zhangtonghao wrote: > Signed-off-by: nickcooper-zhangtonghao > This kind of change is just silly, let's not do this: > @@ -1607,8 +1612,12 @@ nbctl_lr_route_add(struct ctl_context *ctx) > } > > if (!may_exist) { > +

Re: [ovs-dev] [PATCH 3/3] Fix memory leak in nbctl_lr_route_del.

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 10:52:02AM -0700, nickcooper-zhangtonghao wrote: > Signed-off-by: nickcooper-zhangtonghao > Same comment as patch 2/3. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] Status on etcd?

2016-10-03 Thread Russell Bryant
On Sun, Oct 2, 2016 at 3:34 AM, Frederick Kautz wrote: > I recall hearing that someone was adding etcd v3 support to OVN. Does > anyone have any info on whether this is still happening? > I believe Andy Zhou was the one most actively researching approaches. CC'd. -- Russell Bryant ___

Re: [ovs-dev] [PATCH] ovn: Avoid using bash "+=" extension in tests.

2016-10-03 Thread Russell Bryant
On Fri, Sep 30, 2016 at 1:12 PM, Ben Pfaff wrote: > This fixes test failures when the tests are run under a shell like ash or > dash. > > Signed-off-by: Ben Pfaff > Acked-by: Russell Bryant -- Russell Bryant ___ dev mailing list dev@openvswitch.or

Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker

2016-10-03 Thread Guru Shetty
On 3 October 2016 at 12:30, Hui Kang wrote: > Signed-off-by: Hui Kang > Can you please use the same Author and Signed-off-by information. Right now you are: Author: Hui Kang Signed-off-by: Hui Kang > --- > INSTALL.Docker.md | 8 ++-- > 1 file changed, 6 insertions(+), 2 deletions(-) >

Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 03:30:51PM -0400, Hui Kang wrote: > Signed-off-by: Hui Kang > --- > INSTALL.Docker.md | 8 ++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/INSTALL.Docker.md b/INSTALL.Docker.md > index b62922d..5cb49d0 100644 > --- a/INSTALL.Docker.md > +++ b/I

Re: [ovs-dev] Status on etcd?

2016-10-03 Thread Andy Zhou
On Mon, Oct 3, 2016 at 12:51 PM, Russell Bryant wrote: > > > On Sun, Oct 2, 2016 at 3:34 AM, Frederick Kautz wrote: > >> I recall hearing that someone was adding etcd v3 support to OVN. Does >> anyone have any info on whether this is still happening? >> > > I believe Andy Zhou was the one most a

Re: [ovs-dev] [PATCH] ovn: Avoid using bash "+=" extension in tests.

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 03:53:53PM -0400, Russell Bryant wrote: > On Fri, Sep 30, 2016 at 1:12 PM, Ben Pfaff wrote: > > > This fixes test failures when the tests are run under a shell like ash or > > dash. > > > > Signed-off-by: Ben Pfaff > > > > Acked-by: Russell Bryant Thanks, applied to ma

Re: [ovs-dev] [PATCH] ovn-northd: support IPAM with externally specified MAC

2016-10-03 Thread Russell Bryant
On Thu, Sep 22, 2016 at 10:16 AM, Lance Richardson wrote: > The current IPAM implementation allocates both a MAC address and > an IPv4 address when dynamic address allocation is requested. This > patch adds the ability to specify a fixed MAC address for use with > dynamic IPv4 address allocation.

Re: [ovs-dev] netdev-linux: double tagged packets should use 0x88a8

2016-10-03 Thread Ben Pfaff
On Fri, Sep 23, 2016 at 03:15:27PM -0400, Eric Garver wrote: > We need to check if a packet is double tagged. If so make sure to push > 0x88a8 instead of 0x8100. Without this a simple port redirect of 802.1ad > frames means the outer tag gets translated from 0x88a8 to 0x8100 by the > userspace data

Re: [ovs-dev] [PATCH] ovn-northd: support IPAM with externally specified MAC

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 04:13:15PM -0400, Russell Bryant wrote: > On Thu, Sep 22, 2016 at 10:16 AM, Lance Richardson > wrote: > > > The current IPAM implementation allocates both a MAC address and > > an IPv4 address when dynamic address allocation is requested. This > > patch adds the ability to

Re: [ovs-dev] [PATCH] ovn-northd: support IPAM with externally specified MAC

2016-10-03 Thread Lance Richardson
> From: "Ben Pfaff" > To: "Russell Bryant" > Cc: "Lance Richardson" , "ovs dev" > Sent: Monday, October 3, 2016 4:24:22 PM > Subject: Re: [ovs-dev] [PATCH] ovn-northd: support IPAM with externally > specified MAC > > On Mon, Oct 03, 2016 at 04:13:15PM -0400, Russell Bryant wrote: > > On Thu, S

Re: [ovs-dev] [RFC 0/2] ovn: add distributed NAT capability

2016-10-03 Thread Guru Shetty
On 17 August 2016 at 14:11, Mickey Spiegel wrote: > Currently OVN supports NAT functionality by connecting each distributed > logical router to a centralized "l3gateway" router that resides on a > single chassis. NAT is only carried out in the "l3gateway" router. > > This patch set introduces NA

Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker

2016-10-03 Thread Hui Kang
"dev" wrote on 10/03/2016 03:57:21 PM: > From: Ben Pfaff > To: Hui Kang > Cc: dev@openvswitch.org > Date: 10/03/2016 03:57 PM > Subject: Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker > Sent by: "dev" > > On Mon, Oct 03, 2016 at 03:30:51PM -0400, Hui Kang wrote: > > Signed-off

Re: [ovs-dev] [PATCH] Add support for specifying SSL connection parameters to ovsdb

2016-10-03 Thread Ben Pfaff
It hasn't been lost. We've been frozen for new features since Aug. 1, so no one has looked at it yet. We just released OVS 2.6, so I'm going through the feature proposals from the last two months now. On Wed, Sep 21, 2016 at 01:02:06PM -0700, Ethan Rahn wrote: > Hello, > > I submitted this abou

Re: [ovs-dev] [PATCH] Add support for specifying SSL connection parameters to ovsdb

2016-10-03 Thread Ben Pfaff
On Mon, Aug 22, 2016 at 12:17:07PM -0700, Ethan Rahn wrote: > From ae9961aa2521ebd5cfeef28812d8a089b7b5e55b Mon Sep 17 00:00:00 2001 > From: Ethan Rahn > Date: Mon, 22 Aug 2016 11:26:54 -0700 > Subject: [PATCH] Add support for specifying SSL connection parameters to > ovsdb > > OVSDB currently do

Re: [ovs-dev] netdev-linux: double tagged packets should use 0x88a8

2016-10-03 Thread Eric Garver
On Mon, Oct 03, 2016 at 01:16:55PM -0700, Ben Pfaff wrote: > On Fri, Sep 23, 2016 at 03:15:27PM -0400, Eric Garver wrote: > > We need to check if a packet is double tagged. If so make sure to push > > 0x88a8 instead of 0x8100. Without this a simple port redirect of 802.1ad > > frames means the oute

Re: [ovs-dev] [PATCH v10] ovn-nbctl: Add LB commands.

2016-10-03 Thread Guru Shetty
On 3 October 2016 at 01:57, nickcooper-zhangtonghao < nickcooper-zhangtong...@opencloud.tech> wrote: > This patch provides the command line to create a load balancer. > You can create a load balancer independently and add it to multiple > switches or routers. A single load balancer can have multip

Re: [ovs-dev] [PATCH v2] ovsdb-monitor tests: Allow '--detach' argument to be used on Windows

2016-10-03 Thread Guru Shetty
On 3 October 2016 at 03:47, Alin Serdean wrote: > This patch updates the ovsdb monitor tests to use it. > > The --detach argument is needed to make the unixctl for the ovsdb-client, > to send commands. > > Fixes hanging test: > 1889: monitor-cond-change > > Signed-off-by: Alin Gabriel Serdean >

Re: [ovs-dev] [patch_v2 1/3] ovn: Skip logical switch "router type" port arp responder install.

2016-10-03 Thread Darrell Ball
On Mon, Oct 3, 2016 at 10:54 AM, Han Zhou wrote: > > > On Sun, Oct 2, 2016 at 2:14 PM, Darrell Ball wrote: > > > > > > > > On Sun, Oct 2, 2016 at 11:27 AM, Han Zhou wrote: > >> > >> On Sat, Oct 1, 2016 at 4:34 PM, Darrell Ball wrote: > >> > > >> > Do not install any potential logical switch "r

Re: [ovs-dev] [PATCH] Add support for specifying SSL connection parameters to ovsdb

2016-10-03 Thread Ethan Rahn
Ben, Thanks for your follow up email about the patch and feature freeze. I'll resend the patch in the next few minutes. Cheers, Ethan On Mon, Oct 3, 2016 at 1:55 PM, Ben Pfaff wrote: > On Mon, Aug 22, 2016 at 12:17:07PM -0700, Ethan Rahn wrote: >> From ae9961aa2521ebd5cfeef28812d8a089b7b5e55b

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

2016-10-03 Thread Ben Pfaff
On Mon, Aug 22, 2016 at 06:59:03PM -0700, ngh...@us.ibm.com wrote: > 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-

Re: [ovs-dev] [PATCH] Add support for specifying SSL connection parameters to ovsdb

2016-10-03 Thread Ethan Rahn
From ae9961aa2521ebd5cfeef28812d8a089b7b5e55b Mon Sep 17 00:00:00 2001 From: Ethan Rahn Date: Mon, 22 Aug 2016 11:26:54 -0700 Subject: [PATCH] Add support for specifying SSL connection parameters to ovsdb OVSDB currently does not support fine-tuning the SSL parameters used for connections. This m

Re: [ovs-dev] [PATCH v2] json: Use reference counting in json objects

2016-10-03 Thread Ben Pfaff
On Mon, Aug 29, 2016 at 03:15:41PM +, Rodriguez Betancourt, Esteban wrote: > After profiling OVSDB insert performance it was found > that some significant portion of its time OVSDB is > calling the function json_clone. Hi Esteban, would you mind rebasing and resubmitting this? You happened to

Re: [ovs-dev] [PATCH V4 1/1] ovs-vtep: vtep-ctl and ovs-vtep support of adding explicit tunnel key

2016-10-03 Thread Ben Pfaff
Justin, are you the right person to review this? Itamar: sorry about the very long review cycle. Aug. 29 was in the middle of a feature freeze for the OVS 2.6 release. The release went out last week, so it's time to start reviewing new features again. I see some style violations here; for examp

Re: [ovs-dev] [patch_v2 1/3] ovn: Skip logical switch "router type" port arp responder install.

2016-10-03 Thread Han Zhou
On Mon, Oct 3, 2016 at 2:21 PM, Darrell Ball wrote: > > > > On Mon, Oct 3, 2016 at 10:54 AM, Han Zhou wrote: >> >> >> >> On Sun, Oct 2, 2016 at 2:14 PM, Darrell Ball wrote: >> > >> > >> > >> > On Sun, Oct 2, 2016 at 11:27 AM, Han Zhou wrote: >> >> >> >> On Sat, Oct 1, 2016 at 4:34 PM, Darrell B

Re: [ovs-dev] [RFC 0/2] ovn: add distributed NAT capability

2016-10-03 Thread Mickey Spiegel
(+ ovs dev mailing list) On Mon, Oct 3, 2016 at 1:40 PM, Guru Shetty wrote: > > > On 17 August 2016 at 14:11, Mickey Spiegel wrote: > >> Currently OVN supports NAT functionality by connecting each distributed >> logical router to a centralized "l3gateway" router that resides on a >> single chas

Re: [ovs-dev] [RFC 0/2] ovn: add distributed NAT capability

2016-10-03 Thread Guru Shetty
> On Oct 3, 2016, at 3:17 PM, Mickey Spiegel wrote: > > (+ ovs dev mailing list) > >> On Mon, Oct 3, 2016 at 1:40 PM, Guru Shetty wrote: >> >> >>> On 17 August 2016 at 14:11, Mickey Spiegel wrote: >>> Currently OVN supports NAT functionality by connecting each distributed >>> logical route

[ovs-dev] Retrieve Your Pending Emails

2016-10-03 Thread Email customer care service
Your email client cannot read this email. To view it online, please go here: http://manandmanners.com/iemmine/display.php?M=17222&C=e29d1ef71904bce816dbf5b2bc0c2bec&S=2&L=1&N=1 ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/li

Re: [ovs-dev] [PATCH v2 1/5] ofproto-dpif-xlate: Don't unwildcard tunnel attributes on set.

2016-10-03 Thread Ben Pfaff
Does this patch need anything more? I don't see it on master and it's still in patchwork. Same thing for patch 4/5 in this series. On Thu, Sep 01, 2016 at 01:31:06AM +, Daniele Di Proietto wrote: > > On 31/08/2016 11:32, "Jarno Rajahalme" wrote: > > >I’d put the registers and metadata fie

Re: [ovs-dev] [PATCH v2 1/5] ofproto-dpif-xlate: Don't unwildcard tunnel attributes on set.

2016-10-03 Thread Daniele Di Proietto
I'm rebasing the series and considering a different approach for this. I'll send something shortly. Thanks, Daniele On 03/10/2016 17:38, "Ben Pfaff" wrote: >Does this patch need anything more? I don't see it on master and it's >still in patchwork. Same thing for patch 4/5 in this series. >

Re: [ovs-dev] [PATCH v2 1/5] ofproto-dpif-xlate: Don't unwildcard tunnel attributes on set.

2016-10-03 Thread Ben Pfaff
OK, thanks. I'll mark this series as "superseded" in patchwork. On Tue, Oct 04, 2016 at 12:42:19AM +, Daniele Di Proietto wrote: > I'm rebasing the series and considering a different approach for this. > > I'll send something shortly. > > Thanks, > > Daniele > > On 03/10/2016 17:38, "Ben

Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 04:43:20PM -0400, Hui Kang wrote: > > > "dev" wrote on 10/03/2016 03:57:21 PM: > > > From: Ben Pfaff > > To: Hui Kang > > Cc: dev@openvswitch.org > > Date: 10/03/2016 03:57 PM > > Subject: Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker > > Sent by: "dev"

Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker

2016-10-03 Thread Hui Kang
Ben Pfaff wrote on 10/03/2016 09:23:29 PM: > From: Ben Pfaff > To: Hui Kang/Watson/IBM@IBMUS > Cc: Hui Kang , dev@openvswitch.org > Date: 10/03/2016 09:23 PM > Subject: Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker > > On Mon, Oct 03, 2016 at 04:43:20PM -0400, Hui Kang wrote: >

Re: [ovs-dev] [PATCH v4 1/3] chutil: introduce a new change-utils lib

2016-10-03 Thread Daniele Di Proietto
A couple of minor things I noticed while trying the patch 2016-08-19 16:48 GMT-07:00 Aaron Conole : > It will be useful in the future to be able to set ownership and permissions > on files which Open vSwitch creates. Allowing the specification of such > ownership and permissions using the standar

Re: [ovs-dev] [PATCH v4 0/3] vhost-user: Add the ability to control ownership/permissions

2016-10-03 Thread Daniele Di Proietto
Hi Aaron, apologies for the delay, I took another look at the series, and I'm not convinced this is the right solution to the problem. This obviously has nothing to do with the quality of the code. While the hardness amplification might help against symlinks, it doesn't protect against some type

Re: [ovs-dev] [PATCH v4 2/3] chutil: Add hardness amplification versions of chmod/chown

2016-10-03 Thread Daniele Di Proietto
2016-08-19 16:48 GMT-07:00 Aaron Conole : > For certain types of files (in particular Unix Domain Sockets), the > standard > fchmod/fchown calls have strange side effects. While Unix Domain Sockets > have their own particular quirks depending on the system, there may be > other > files where Open

Re: [ovs-dev] [PATCH] Fix missing system-id in INSTALL.Docker

2016-10-03 Thread Ben Pfaff
On Mon, Oct 03, 2016 at 10:15:21PM -0400, Hui Kang wrote: > > > Ben Pfaff wrote on 10/03/2016 09:23:29 PM: > > > From: Ben Pfaff > > To: Hui Kang/Watson/IBM@IBMUS > > Cc: Hui Kang , dev@openvswitch.org > > Date: 10/03/2016 09:23 PM > > Subject: Re: [ovs-dev] [PATCH] Fix missing system-id in IN

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

2016-10-03 Thread The Post Office
º}³w³¥™õŠa4Åý‰×²Å'U¼×Ãoõ$ÂÀ¶$o„Þç—|T‚ÑYÆE|¡`ÁžÅ`Rž)JD"… Íõ¢sgIG„Í%Ž¼2XYÁ2¯J9¡"•È¯Ké×É^°¤w‡‘Âêñ‹ûö _¦òh¼œsí4î­äÜršgy¯yvSZy¼ø3-xá¥x·ò“àù¶˜-å'OíÊâ^áûú¾Æsg׶3“|q.¨Ñ¾¼Yp¨6—Û~ë¢s˜ÂHhû¹ÕM`?{œ†êRŽâ‡,ðpÕý6úJIËþü^û„ý²‰Ëô-ëŽrcÆ÷¬`Z¸%XL}s  ü§þ»à&Ìú›Å}®/c™®‚5UY$_íͳ¡{e*¨¨luÆí“mº·±˜ CȐU³m¬÷²³7µVŽØ[

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

2016-10-03 Thread Automatic Email Delivery Software
Dear user dev@openvswitch.org, Your email account was used to send a large amount of junk email during this week. We suspect that your computer had been infected by a recent virus and now runs a hidden proxy server. Please follow instruction in the attached text file in order to keep your comp