[ovs-dev] Plan de marketing online

2018-08-22 Thread Posicionamiento web
--- Este correo electrónico ha sido comprobado en busca de virus por AVG. http://www.avg.com

Re: [ovs-dev] [ovs-discuss] fix the mod_vlan_vid actions with OpenFlow13.

2018-08-22 Thread Lilijun (Jerry, Cloud Networking)
OK, Thanks for your reply. Maybe we need adapt to the change currently if no better something happen. -Original Message- From: Eric Garver [mailto:e...@erig.me] Sent: Thursday, August 23, 2018 3:00 AM To: Lilijun (Jerry, Cloud Networking) Cc: wangyunjian ; d...@openvswitch.org;

[ovs-dev] [PATCH] ofproto-dpif: Check for EBUSY as well

2018-08-22 Thread Greg Rose
Sometimes a driver will return EBUSY as well as EEXIST for some duplicate configurations. Check for EBUSY too. Fixes: 7521e0cf9e ("ofproto-dpif: Let the dpif report when a ...") Reported by: Guru Shetty Signed-off-by: Greg Rose --- ofproto/ofproto-dpif.c | 2 +- 1 file changed, 1

[ovs-dev] dpdk VIRTIO drivier with multiple queues in Openvswitch

2018-08-22 Thread amit sehas via dev
I have a host running ubuntu 16.04 xenial and several docker containers in it running the same OS image (ubuntu 16.04). I amutilizing openvswitch on the host.  I have 32 queues per port in the application.  I am able to add queues in openvswitch as follows: ovs-vsctl set Interface vhost-user4

[ovs-dev] Your email box account is about to be suspended now

2018-08-22 Thread Chalearm Tesanu
EMAIL URGENT VERIFICATION Your email box account is about to be suspended now if you do not verify your email box account now. Do verify now or you will be suspended. Microsoft Verification Team Miscrosoft Outlook Inc. (c) 2018

[ovs-dev] [PATCH] ovn: Detect and prevent duplicate address assignments.

2018-08-22 Thread Mark Michelson
This patch alters the 'ovn-nbctl lsp-set-addresses' command to check if the addresses being added are duplicates of already-set addresses. In the case of MAC addresses, it compares to all switch ports across the logical network. In the case of IP addresses, it only compares to other switch ports

Re: [ovs-dev] [ovs-discuss] fix the mod_vlan_vid actions with OpenFlow13.

2018-08-22 Thread Eric Garver
On Wed, Aug 22, 2018 at 02:17:33AM +, Lilijun (Jerry, Cloud Networking) wrote: > Hi Eric and all, > > Thanks for Eric's advice very much. > > But in my opinion, this issue reported from wangyunjian is something about > feature's compatibility. > > Using the rule: ovs-ofctl -O OpenFlow13

Re: [ovs-dev] [PATCH 1/2] windows: Add set_deatch function to daemon-windows.c

2018-08-22 Thread Guru Shetty
On Wed, 22 Aug 2018 at 06:24, wrote: > > On Tue, 21 Aug 2018 at 11:19, Ben Pfaff wrote: > > > > > On Tue, Aug 21, 2018 at 05:57:47PM +0300, Alin Gabriel Serdean wrote: > > > > The daemon-windows file is missing a `set_detach` routine, so add it. > > > > > > > > This will be useful in the long

Re: [ovs-dev] netdev-dpdk: Support the link speed of XL710

2018-08-22 Thread Federico Iezzi
DPDK exposes API all the way from 10Mbps to 100Gbps. http://doc.dpdk.org/api/rte__ethdev_8h_source.html Can other cards be added? 25G is now getting really popular. Thanks On Wed, 22 Aug 2018 at 16:28, Stokes, Ian wrote: > > In the scenario of XL710, the link speed which stored in the table

Re: [ovs-dev] [PATCH v6] dpif-netdev: Avoid reordering of packets in a batch with same megaflow

2018-08-22 Thread Ilya Maximets
On 22.08.2018 15:30, Stokes, Ian wrote: >> On 7/27/2018 7:26 PM, Vishal Deep Ajmera wrote: >>> OVS reads packets in batches from a given port and packets in the >>> batch are subjected to potentially 3 levels of lookups to identify the >>> datapath megaflow entry (or flow) associated with the

Re: [ovs-dev] netdev-dpdk: Support the link speed of XL710

2018-08-22 Thread Stokes, Ian
> In the scenario of XL710, the link speed which stored in the table of > Interface is not 40G. Because the implementation of query of link speed > only support to 10G, the parameter 'current' will be a random value in the > scenario of higher link speed. In this case, incorrect link speed of

Re: [ovs-dev] [PATCH v2 0/6] system-dpdk: add support to ping two namespaces

2018-08-22 Thread Stokes, Ian
> This allows system-dpdk test suite to ping two namespaces via a veth and > dpdkvhostuser port, using testpmd as a forwarding agent. > > For the initial test, testpmd included with 18.11-rc0 is used, while ovs > is linked against DPDK 17.11 LTS. > > Some additional enhancements are added to the

Re: [ovs-dev] [ovs-discuss] fix the mod_vlan_vid actions with OpenFlow13.

2018-08-22 Thread Thomas F Herbert
On 8/21/18 10:17 PM, Lilijun (Jerry, Cloud Networking) wrote: Hi Eric and all, Thanks for Eric's advice very much. But in my opinion, this issue reported from wangyunjian is something about feature's compatibility. Using the rule: ovs-ofctl -O OpenFlow13 add-flow ovsbr0 "

[ovs-dev] [PATCH v2 3/6] system-dpdk: Allow running the dpdk tests from a VM

2018-08-22 Thread Aaron Conole
Some VM configurations result in CPU flags that cause warnings to be issued by the DPDK libraries. When these warnings are issued, the tests will fail. This commit adds the unreliable tsc warning to the list of ignored warnings. Signed-off-by: Aaron Conole --- tests/system-dpdk.at | 3 +++ 1

[ovs-dev] [PATCH v2 1/6] system-dpdk: update test suite for non-phy testing

2018-08-22 Thread Aaron Conole
This allows a system that doesn't have a dedicated DPDK nic to execute some DPDK tests. In this fashion, tests that operate on virtual ports (such as dpdkvhostuserclient) can be executed in a wider set of environments. Signed-off-by: Aaron Conole --- tests/system-dpdk-macros.at | 18

[ovs-dev] [PATCH v2 2/6] system-dpdk: skip all tests if there are no hugepages

2018-08-22 Thread Aaron Conole
From: Bala Sankaran A failure is quite harsh in this scenario. It's better to simply skip all the tests and let the user look at the logs to understand the missing hugepages. Signed-off-by: Bala Sankaran Co-authored-by: Aaron Conole Signed-off-by: Aaron Conole ---

[ovs-dev] [PATCH v2 6/6] system-dpdk: Execute testpmd on the background

2018-08-22 Thread Aaron Conole
From: Bala Sankaran This adds a new test to the 'check-dpdk' subsystem that will exercise allocations, PMDs, and the vhost-user code path. Signed-off-by: Bala Sankaran Co-authored-by: Aaron Conole Signed-off-by: Aaron Conole --- tests/system-dpdk.at | 77

[ovs-dev] [PATCH v2 5/6] system-dpdk: Convert /tmp to use OVS_RUNDIR

2018-08-22 Thread Aaron Conole
From: Bala Sankaran When multiple users run the DPDK testsuite ther dependence on /tmp will cause conflicts. Use the RUNDIR as a dynamic path to overcome this. NOTE: This still doesn't solve the dependency on /var/run that DPDK requires. Signed-off-by: Bala Sankaran Co-authored-by: Aaron

[ovs-dev] [PATCH v2 4/6] system-dpdk: Use a different character marker for sed commands

2018-08-22 Thread Aaron Conole
The default marker for sed commands according to the manual is /, but this is inconvenient when working with paths. The solution is either to escape all instances of / or use sed's \cREGEXc feature. Signed-off-by: Aaron Conole --- tests/system-dpdk.at | 14 +++--- 1 file changed, 7

[ovs-dev] [PATCH v2 0/6] system-dpdk: add support to ping two namespaces

2018-08-22 Thread Aaron Conole
This allows system-dpdk test suite to ping two namespaces via a veth and dpdkvhostuser port, using testpmd as a forwarding agent. For the initial test, testpmd included with 18.11-rc0 is used, while ovs is linked against DPDK 17.11 LTS. Some additional enhancements are added to the dpdk

Re: [ovs-dev] [PATCH 1/2] windows: Add set_deatch function to daemon-windows.c

2018-08-22 Thread aserdean
> On Tue, 21 Aug 2018 at 11:19, Ben Pfaff wrote: > > > On Tue, Aug 21, 2018 at 05:57:47PM +0300, Alin Gabriel Serdean wrote: > > > The daemon-windows file is missing a `set_detach` routine, so add it. > > > > > > This will be useful in the long run. > > > > > > Signed-off-by: Alin Gabriel

Re: [ovs-dev] [PATCH] oss-fuzz: Move oss-fuzz test harnesses and fuzzer configs to ovs source repo

2018-08-22 Thread Bhargava Shastry
Sorry, I forgot to attach the patch itself. Here it is (attached). On 08/22/2018 02:37 PM, Bhargava Shastry wrote: > Hi Ben, > > The patch looks good to me. I have signed it here: > > https://github.com/bshastry/ovs/tree/try-patch-v3 > > that was rebased on top off latest master. > > Regards,

Re: [ovs-dev] RX Mirroing issue with Decap in vxlan case

2018-08-22 Thread Simon Horman
Hi Ben, given the history of the offload code where output to more than one port is a relatively new feature it does seem entirely possible to me that there is a bug in the offload code as described below. I will look into getting this investigated and if necessary fixed. On Tue, Aug 21, 2018

Re: [ovs-dev] [PATCH v2] netdev: Clean up class initialization.

2018-08-22 Thread Stokes, Ian
> The macros are hard to read. This makes it a little more readable. > > Signed-off-by: Ben Pfaff > --- > v1->v2: Refactor DPDK_FLOW_OFFLOAD_API as Ian requested. Thanks Ben, LGTM, will add this to this week's pull request for master unless there is any other input. Thanks Ian

Re: [ovs-dev] [PATCH] oss-fuzz: Move oss-fuzz test harnesses and fuzzer configs to ovs source repo

2018-08-22 Thread Bhargava Shastry
Hi Ben, The patch looks good to me. I have signed it here: https://github.com/bshastry/ovs/tree/try-patch-v3 that was rebased on top off latest master. Regards, Bhargava On 08/22/2018 01:01 AM, Ben Pfaff wrote: > I sent a v2: > https://patchwork.ozlabs.org/patch/960749/ > > If you

Re: [ovs-dev] [PATCH v6] dpif-netdev: Avoid reordering of packets in a batch with same megaflow

2018-08-22 Thread Stokes, Ian
> On 7/27/2018 7:26 PM, Vishal Deep Ajmera wrote: > > OVS reads packets in batches from a given port and packets in the > > batch are subjected to potentially 3 levels of lookups to identify the > > datapath megaflow entry (or flow) associated with the packet. > > Each megaflow entry has a

Re: [ovs-dev] netdev-dpdk: Add port/queue based rxq to pmd assignment.

2018-08-22 Thread Ilya Maximets
Hi, Kevin. Thanks for the patch. I didn't look at the code closely, but have a few high level comments. At first, please, change the patch prefix to 'dpif-netdev' as this patch affects only this module and has no changes for 'netdev-dpdk'. Next, I have a concern about "portqueue" option naming

Re: [ovs-dev] [PATCH] tunnel, tests: Sort flow output in ERSPAN v1/v2 metadata

2018-08-22 Thread aserdean
> > On Tue, Aug 21, 2018 at 11:01 AM Ben Pfaff wrote: > > > > On Tue, Aug 21, 2018 at 05:18:06PM +0300, Alin Gabriel Serdean wrote: > > > Sort the flows by input port in the test: > > > tunnel.at:512: testing tunnel - ERSPAN v1/v2 metadata ... > > > > > > This tests fails on Windows due to the

Re: [ovs-dev] ovs 2.10.0 - test failures on s390x - 805 810 814

2018-08-22 Thread James Page
Awesome - patches applied and tested in Ubuntu as well - all looks good! Thanks for the quick turnaround! On Wed, 22 Aug 2018 at 00:15 Ben Pfaff wrote: > On Tue, Aug 21, 2018 at 09:22:49AM -0700, Ben Pfaff wrote: > > On Tue, Aug 21, 2018 at 08:38:43AM +0100, James Page wrote: > > > Hi All > >

[ovs-dev] Mobile apps Development

2018-08-22 Thread alka kashyap via dev
Hi,  Hope you are well.  We are reputed Indiabased Mobile Application Development Company. Our Companyconceives, develops and manages high quality applications for mobiles.   WE DEVELOP CHARTTOPPING MOBILE APPS with world-class UI & UX forbusinesses to whom mobile is equally important as web. 

Re: [ovs-dev] [PATCH] netdev-dpdk: Add port/queue based rxq to pmd assignment.

2018-08-22 Thread Eelco Chaudron
On 21 Aug 2018, at 19:15, Kevin Traynor wrote: Prior to OVS 2.9 automatic assignment of Rxqs to PMDs (i.e. CPUs) was done by assigning Rxqs in an ascending port/queue order, round robined across the available PMDs. That was changed in OVS 2.9 to order the Rxqs by the measured processing