Re: [ovs-dev] [PATCH v11] OVN: Enable E-W Traffic, Vlan backed DVR

2019-06-18 Thread Numan Siddique
On Tue, Jun 18, 2019 at 2:10 AM Ankur Sharma wrote: > Background: > [1] > https://mail.openvswitch.org/pipermail/ovs-dev/2018-October/353066.html > [2] > https://docs.google.com/document/d/1uoQH478wM1OZ16HrxzbOUvk5LvFnfNEWbkPT6Zmm9OU/edit?usp=sharing > > Key difference between an overlay logical

[ovs-dev] [PATCH] ofproto-dpif-upcall: Remove unused macro MAX_QUEUE_LENGTH.

2019-06-18 Thread Yunjian Wang
Signed-off-by: Yunjian Wang --- ofproto/ofproto-dpif-upcall.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ofproto/ofproto-dpif-upcall.c b/ofproto/ofproto-dpif-upcall.c index a19aa95..196ce01 100644 --- a/ofproto/ofproto-dpif-upcall.c +++ b/ofproto/ofproto-dpif-upcall.c @@ -45,7 +45,6 @@

Re: [ovs-dev] [PATCHv12] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread 0-day Robot
Bleep bloop. Greetings William Tu, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. git-am: Failed to merge in the changes. Patch failed at 0001 netdev-afxdp: add new netdev type for AF_XDP.

[ovs-dev] [PATCHv12] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread William Tu
The patch introduces experimental AF_XDP support for OVS netdev. AF_XDP, the Address Family of the eXpress Data Path, is a new Linux socket type built upon the eBPF and XDP technology. It is aims to have comparable performance to DPDK but cooperate better with existing kernel's networking stack.

Re: [ovs-dev] [PATCHv11] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread William Tu
> The PVP test seems to work fine however after a while it stops > forwarding: > > $ ovs-ofctl dump-flows ovs_pvp_br0 > cookie=0x0, duration=8.510s, table=0, n_packets=1, n_bytes=1020, > in_port=eno1 actions=output:tapVM > cookie=0x0, duration=8.504s, table=0, n_packets=1, n_bytes=252, >

Re: [ovs-dev] [PATCHv11] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread William Tu
> > I guess, this crash caused by trying to destroy unallocated queue. > > Following change could help: > --- > diff --git a/lib/netdev-afxdp.c b/lib/netdev-afxdp.c > index a6543e8f5..6e1431dce 100644 > --- a/lib/netdev-afxdp.c > +++ b/lib/netdev-afxdp.c > @@ -249,7 +249,7 @@

Re: [ovs-dev] [PATCH v2] Detailed packet drop statistics per dpdk and vhostuser ports

2019-06-18 Thread Kevin Traynor
On 18/06/2019 15:05, Kevin Traynor wrote: > Hi Sriram, > > On 14/06/2019 14:38, Sriram Vatala via dev wrote: >> OVS may be unable to transmit packets for multiple reasons and >> today there is a single counter to track packets dropped due to >> any of those reasons. The most common reason is that

Re: [ovs-dev] [PATCHv11] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread William Tu
> > I’m using an RHEL7 instance and use systemd to restart openvswitch > with “systemctl restart openvswitch”. > It uses ovs-ctl to stat/stop, see here for some details: > > https://github.com/openvswitch/ovs/blob/master/rhel/usr_lib_systemd_system_ovs-vswitchd.service.in > > Thanks Eelco, I can

[ovs-dev] История государства Российского — уникальная видеоколлекция в отличном качестве. 13_05_2019 02_03 198707

2019-06-18 Thread Роман Колунов via dev
ИСТОРИЯ ГОСУДАРСТВА РОССИЙСКОГО Цикл "История государства Российского" созданный по фундаментальному одноименному труду выдающегося литератора и историка российской культуры 19 века Николая Михайловича Карамзина и дополненный сочинениями Николая Ивановича Костомарова «Русская история в

Re: [ovs-dev] [PATCH 2/2] travis: Make it possible to build against a dpdk branch.

2019-06-18 Thread David Marchand
On Tue, Jun 18, 2019 at 5:24 PM Ilya Maximets wrote: > On 12.06.2019 12:21, David Marchand wrote: > > Rework the build script so that we can pass branches and tags. > > > > With this, DPDK_VER can be passed as: > > - a string starting with refs/ which is understood as a git reference. > > This

Re: [ovs-dev] [RFC] ofproto-dpif-xlate: Flood the updates for learning tables through peers.

2019-06-18 Thread Ben Pfaff
On Tue, Jun 18, 2019 at 05:29:30PM +0300, Ilya Maximets wrote: > Since bridges connected via patch ports are almost the same L2 bridge, > they should share L2 learning information in order to avoid such > conditions. > > This could be implemented by flooding of the mac learning information > over

Re: [ovs-dev] [PATCH 2/2] travis: Make it possible to build against a dpdk branch.

2019-06-18 Thread Ilya Maximets
On 12.06.2019 12:21, David Marchand wrote: > Rework the build script so that we can pass branches and tags. > > With this, DPDK_VER can be passed as: > - a string starting with refs/ which is understood as a git reference. > This triggers a git clone on DPDK_GIT (default value points to >

[ovs-dev] [RFC] ofproto-dpif-xlate: Flood the updates for learning tables through peers.

2019-06-18 Thread Ilya Maximets
Consider following setup: br0: phy-port random-port patch-to-br-int br-int: port-1 port-2 patch-to-br0 And the expected traffic pattern: phy-port ---> port-1 ---> port-2 ---> phy-port For example, this could be done if 'port-1' and 'port-2' are ports of two VMs

Re: [ovs-dev] [PATCH v2] Detailed packet drop statistics per dpdk and vhostuser ports

2019-06-18 Thread Kevin Traynor
Hi Sriram, On 14/06/2019 14:38, Sriram Vatala via dev wrote: > OVS may be unable to transmit packets for multiple reasons and > today there is a single counter to track packets dropped due to > any of those reasons. The most common reason is that a VM is > unable to read packets fast enough

Re: [ovs-dev] [PATCHv11] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread Eelco Chaudron
On 18 Jun 2019, at 12:17, Ilya Maximets wrote: On 18.06.2019 12:45, Eelco Chaudron wrote: On 17 Jun 2019, at 22:32, William Tu wrote: 1000,463875,419996,402010 However I can not restart OVS (see other email on how I restart), even if I clear the XDP programs before a restart it

Re: [ovs-dev] [PATCHv11] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread Ilya Maximets
On 18.06.2019 12:45, Eelco Chaudron wrote: > > > On 17 Jun 2019, at 22:32, William Tu wrote: > >> On Mon, Jun 17, 2019 at 11:23 AM William Tu wrote: >>> >>> Hi Eelco, >>> >>> On Mon, Jun 17, 2019 at 3:12 AM Eelco Chaudron wrote: Hi William, See below parts of an offline

Re: [ovs-dev] [PATCHv11] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread Eelco Chaudron
On 17 Jun 2019, at 22:32, William Tu wrote: On Mon, Jun 17, 2019 at 11:23 AM William Tu wrote: Hi Eelco, On Mon, Jun 17, 2019 at 3:12 AM Eelco Chaudron wrote: Hi William, See below parts of an offline email discussion I had with Magnus before, and some research I did in the end,

Re: [ovs-dev] [PATCHv11] netdev-afxdp: add new netdev type for AF_XDP.

2019-06-18 Thread Eelco Chaudron
On 17 Jun 2019, at 20:23, William Tu wrote: Hi Eelco, On Mon, Jun 17, 2019 at 3:12 AM Eelco Chaudron wrote: Hi William, See below parts of an offline email discussion I had with Magnus before, and some research I did in the end, which explains that by design you might not get all the

[ovs-dev] Диафильмы для детей в цифровом формате - уникальная коллекция в отличном качестве. 13_05_2019 02_03 198707

2019-06-18 Thread Роман Колунов via dev
ДЕТСКИЕ ДИАФИЛЬМЫ Каждый из нас бережно хранит в своем сердце воспоминания детства. Радостные или грустные, светлые или полные горечи, они служат как бы мостиком, который связывает нас сегодняшних, взрослых и солидных, с теми маленькими детьми, которыми мы были когда-то. Иногда, испытывая

[ovs-dev] test

2019-06-18 Thread home
Dear, dev ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] [PATCH v2] Detailed packet drop statistics per dpdk and vhostuser ports

2019-06-18 Thread Sriram Vatala via dev
Please consider this as a gentle remainder. Thanks & Regards, Sriram. -Original Message- From: Sriram Vatala Sent: 14 June 2019 19:08 To: ovs-dev@openvswitch.org Cc: Sriram Vatala Subject: [PATCH v2] Detailed packet drop statistics per dpdk and vhostuser ports OVS may be unable to