Re: [ovs-dev] [v2] odp: Add datapath clone action parser.

2017-02-01 Thread Andy Zhou
On Wed, Feb 1, 2017 at 2:07 PM, Ben Pfaff wrote: > On Wed, Feb 01, 2017 at 01:36:33PM -0800, Andy Zhou wrote: >> When adding userspace datapath clone action, the corresponding odp >> actions parser and unit tests were missing. This patch adds them. >> >> Reported-by: Ben Pfaff

Re: [ovs-dev] [libvirt] [RFC] Vhost-user backends cross-version migration support

2017-02-01 Thread Michael S. Tsirkin
On Wed, Feb 01, 2017 at 11:41:19AM +, Daniel P. Berrange wrote: > On Wed, Feb 01, 2017 at 12:33:22PM +0100, Maxime Coquelin wrote: > > > > > > On 02/01/2017 10:43 AM, Daniel P. Berrange wrote: > > > On Wed, Feb 01, 2017 at 10:14:54AM +0100, Michal Privoznik wrote: > > > > On 02/01/2017 09:35

[ovs-dev] [v2] odp: Add datapath clone action parser.

2017-02-01 Thread Andy Zhou
When adding userspace datapath clone action, the corresponding odp actions parser and unit tests were missing. This patch adds them. Reported-by: Ben Pfaff Signed-off-by: Andy Zhou --- v1->v2: Be more tolerate of white spaces. Tested with: $ echo

Re: [ovs-dev] [v2] odp: Add datapath clone action parser.

2017-02-01 Thread Ben Pfaff
On Wed, Feb 01, 2017 at 01:36:33PM -0800, Andy Zhou wrote: > When adding userspace datapath clone action, the corresponding odp > actions parser and unit tests were missing. This patch adds them. > > Reported-by: Ben Pfaff > Signed-off-by: Andy Zhou > > --- >

Re: [ovs-dev] [PATCH] odp: Add datapath clone action parser.

2017-02-01 Thread Andy Zhou
On Wed, Feb 1, 2017 at 9:45 AM, Ben Pfaff wrote: > On Tue, Jan 31, 2017 at 08:24:02PM -0800, Andy Zhou wrote: >> When adding userspace datapath clone action, the corresponding odp >> actions parser and unit tests were missing. This patch adds them. >> >> Reported-by: Ben Pfaff

[ovs-dev] [PATCH] docs: Add OVS and OVN headings to pages.

2017-02-01 Thread Russell Bryant
Update the "deep dive" and "howto" pages with headings that more clearly indicate the separate lists of OVS or OVN content. Also add a link to ovn-architecture from the "deep dive" page as it seems quite relevant there. Signed-off-by: Russell Bryant ---

[ovs-dev] [PATCH] ovn: Add missing netdev_close in setup_qos.

2017-02-01 Thread Russell Bryant
We missed calling netdev_close in a couple of places. One was in an error condition rarely hit. The second was just introduced and would be hit in all cases where QoS is not in use. Fixes: dc2dab6e6de5 ("ovn-controller: Configure interface QoS only if it would actually be used.")

Re: [ovs-dev] [PATCH 1/2] ovn-controller: Fix memory leak and bug in setup_qos().

2017-02-01 Thread Numan Siddique
On Wed, Feb 1, 2017 at 10:52 PM, Ben Pfaff wrote: > The caller of netdev_get_qos() is responsible for freeing its 'details' > smap. > > Is this patch a good candidate for back porting to 2.6 branch since it's fixing memory leaks ? Thanks Numan ​ > Also, the previous qdisc

[ovs-dev] [PATCH v2 2/2] ovn: Gratuitous ARP for centralized NAT rules on a distributed router

2017-02-01 Thread Mickey Spiegel
This patch extends gratuitous ARP support for NAT addresses so that it applies to centralized NAT rules on a distributed router, in addition to the existing gratuitous ARP support for NAT addresses on gateway routers. Gratuitous ARP packets for centralized NAT rules on a distributed router are

[ovs-dev] [PATCH v2 1/2] ovn: specify options:nat-addresses as "router"

2017-02-01 Thread Mickey Spiegel
Currently in OVN, the "nat-addresses" in the "options" column of a logical switch port of type "router" must be specified manually. Typically the user would specify as "nat-addresses" all of the NAT external IP addresses and load balancer IP addresses that have already been specified separately on

Re: [ovs-dev] [PATCH] ovn-trace: Style improvements.

2017-02-01 Thread Russell Bryant
On Fri, Jan 13, 2017 at 2:30 PM, Ben Pfaff wrote: > Signed-off-by: Ben Pfaff > --- > ovn/utilities/ovn-trace.c | 12 +--- > 1 file changed, 9 insertions(+), 3 deletions(-) > Acked-by: Russell Bryant -- Russell Bryant

[ovs-dev] dev(重要邮件)必看

2017-02-01 Thread admin(mail)
Hi :d...@openvswitch.org! 账户将被锁定,由于未能重新验证并确认所有权. 现在点此来进行验证 未能验证则暂时邮箱服务 NOTE: 这是在目的进行了一次用户认证,以提供更安全 的平台,并关闭在垃圾邮件的目的和其他欺诈活动创建的机器人或恶意用户. (C)2016。 版权所有. NMLSR ID 399801 ___ dev mailing list d...@openvswitch.org

Re: [ovs-dev] [PATCH 2/2] ovn-controller: Configure interface QoS only if it would actually be used.

2017-02-01 Thread Russell Bryant
Ah, I noticed after reviewing that the patches were already merged. Sorry. I'll submit my suggestions as a follow-up patch. On Thu, Feb 2, 2017 at 1:33 AM, Russell Bryant wrote: > > > On Wed, Feb 1, 2017 at 12:22 PM, Ben Pfaff wrote: > >> Until now,

Re: [ovs-dev] [libvirt] [RFC] Vhost-user backends cross-version migration support

2017-02-01 Thread Daniel P. Berrange
On Wed, Feb 01, 2017 at 10:14:54AM +0100, Michal Privoznik wrote: > On 02/01/2017 09:35 AM, Maxime Coquelin wrote: > > Solution 3: Libvirt queries OVS for vhost backend version string: *OK* > > == > > > > > > The idea is to

[ovs-dev] [RFC] Vhost-user backends cross-version migration support

2017-02-01 Thread Maxime Coquelin
Hi, Few months ago, Michael reported a problem about migrating VMs relying on vhost-user between hosts supporting different backend versions: - Message-Id: <20161011173526-mutt-send-email-...@kernel.org> - https://lists.gnu.org/archive/html/qemu-devel/2016-10/msg03026.html The goal of this

Re: [ovs-dev] [libvirt] [RFC] Vhost-user backends cross-version migration support

2017-02-01 Thread Michal Privoznik
On 02/01/2017 09:35 AM, Maxime Coquelin wrote: > Hi, > > Few months ago, Michael reported a problem about migrating VMs relying > on vhost-user between hosts supporting different backend versions: > - Message-Id: <20161011173526-mutt-send-email-...@kernel.org> > -

Re: [ovs-dev] [libvirt] [RFC] Vhost-user backends cross-version migration support

2017-02-01 Thread Daniel P. Berrange
On Wed, Feb 01, 2017 at 12:33:22PM +0100, Maxime Coquelin wrote: > > > On 02/01/2017 10:43 AM, Daniel P. Berrange wrote: > > On Wed, Feb 01, 2017 at 10:14:54AM +0100, Michal Privoznik wrote: > > > On 02/01/2017 09:35 AM, Maxime Coquelin wrote: > > > > > > Solution 3: Libvirt queries OVS for

[ovs-dev] Openvswitch mode

2017-02-01 Thread Sumitha Ramesh
Hi, Is OVS supports both openflow-hybrid mode and openflow mode? If yes, how to configure OVS to openflow-hybrid mode? Im new to OVS, any help will be appreciated. ___ dev mailing list d...@openvswitch.org

[ovs-dev] [PATCH] tests: MPLS translate causes issues on slow systems

2017-02-01 Thread Alin Serdean
On slow systems ofproto/trace in combination with a recirculation ID causes issues because the flow is evicted before the second packet can reach it. I.e: " Flow: recirc_id=0x2,ip,in_port=1,vlan_tci=0x,dl_src=f8:bc:12:44:34:b6,

[ovs-dev] [PATCH 1/2] ovn-controller: Fix memory leak and bug in setup_qos().

2017-02-01 Thread Ben Pfaff
The caller of netdev_get_qos() is responsible for freeing its 'details' smap. Also, the previous qdisc details, for some arbitrary previous type of QoS, aren't relevant for changing the type of QoS. Signed-off-by: Ben Pfaff --- ovn/controller/binding.c | 7 +-- 1 file

Re: [ovs-dev] [branch-2.7] Prepare for 2.7.0.

2017-02-01 Thread Ben Pfaff
On Tue, Jan 31, 2017 at 05:47:45PM -0800, Justin Pettit wrote: > Signed-off-by: Justin Pettit Acked-by: Ben Pfaff ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH] odp: Add datapath clone action parser.

2017-02-01 Thread Ben Pfaff
On Tue, Jan 31, 2017 at 08:24:02PM -0800, Andy Zhou wrote: > When adding userspace datapath clone action, the corresponding odp > actions parser and unit tests were missing. This patch adds them. > > Reported-by: Ben Pfaff > Signed-off-by: Andy Zhou > > --- > Note:

[ovs-dev] [PATCH 2/2] ovn-controller: Configure interface QoS only if it would actually be used.

2017-02-01 Thread Ben Pfaff
Until now, ovn-controller has unconditionally configured linux-htb on physical interfaces. QoS is pretty much always trouble, but it's even more trouble if we set it up for no good reason. We received a bug report, in particular, that doing this disrupts connectivity in Docker. This commit

Re: [ovs-dev] [PATCH v2] windows: wmi add include

2017-02-01 Thread Ben Pfaff
On Wed, Feb 01, 2017 at 12:56:44AM +, Alin Serdean wrote: > > > -Original Message- > > From: Ben Pfaff [mailto:b...@ovn.org] > > Sent: Tuesday, January 31, 2017 11:35 PM > > To: Alin Serdean > > Cc: d...@openvswitch.org > > Subject: Re: [ovs-dev]

Re: [ovs-dev] [PATCH] Prepare for post-2.7.0 (2.7.90).

2017-02-01 Thread Justin Pettit
> On Feb 1, 2017, at 9:28 AM, Ben Pfaff wrote: > > On Tue, Jan 31, 2017 at 05:53:41PM -0800, Justin Pettit wrote: >> Signed-off-by: Justin Pettit > > Acked-by: Ben Pfaff Thanks. Pushed to master. --Justin

Re: [ovs-dev] [branch-2.7] Prepare for 2.7.0.

2017-02-01 Thread Justin Pettit
> On Feb 1, 2017, at 9:27 AM, Ben Pfaff wrote: > > On Tue, Jan 31, 2017 at 05:47:45PM -0800, Justin Pettit wrote: >> Signed-off-by: Justin Pettit > > Acked-by: Ben Pfaff Thanks. Pushed to branch-2.7. --Justin

Re: [ovs-dev] [PATCH 1/1] OVN: Firewall service files for OVN

2017-02-01 Thread Ben Pfaff
On Wed, Feb 01, 2017 at 09:59:22AM +0100, Marcin Mirecki wrote: > From adeba4e31c616f2212a0d8f5bac173ed1d42552a Mon Sep 17 00:00:00 2001 > From: Marcin Mirecki > Date: Tue, 31 Jan 2017 16:33:36 +0100 > Subject: [PATCH] Firewall service files for OVN > > Firewall service

[ovs-dev] devenir

2017-02-01 Thread Changement Travail
UN NOUVEAU METIER POURUNE NOUVELLE VIE DEVENEZ HYPNOTHERAPEUTE