Re: [ovs-discuss] [ovs-dev] adding dpdk ports sharing same pci address to ovs-dpdk bridge

2017-09-18 Thread devendra rawat
Hi Kevin, On Fri, Sep 8, 2017 at 12:24 AM, Kevin Traynor wrote: > On 09/07/2017 06:47 PM, Darrell Ball wrote: > > Adding disc...@openvswitch.org > > > > The related changes went into 2.7 > > > > > > > > On 9/7/17, 3:51 AM, "ovs-dev-bou

[ovs-discuss] adding dpdk ports sharing same pci address to ovs-dpdk bridge

2017-09-06 Thread devendra rawat
Hi, I have compiled and built ovs-dpdk using DPDK v17.08 and OVS v2.8.0. The NIC that I am using is Mellanox ConnectX-3 Pro, which is a dual port 10G NIC. The problem with this NIC is that it provides only one PCI address for both the 10G ports. So when I am trying to add the two DPDK ports to my

[ovs-discuss] 10G interface stops receiving traffic after 100Mbps (ovs-DPDK)

2016-11-17 Thread devendra rawat
I am trying to bring up my ethernet device interface in ovs-DPDK I have created and added my non PCI vdev as dpdk0 device on bridge br0. # ovs-vsctl --no-wait set Open_vSwitch . other_config:dpdk-extra=--vdev =my_eth_dev # ovs-vsctl --no-wait add-br br0 -- set bridge br0 datapath_type=netdev # o

[ovs-discuss] (no subject)

2016-11-17 Thread devendra rawat
I am trying to bring up my ethernet device interface in ovs-DPDK I have created and added my non PCI vdev as dpdk0 device on bridge br0. # ovs-vsctl --no-wait set Open_vSwitch . other_config:dpdk-extra=-- vdev=my_eth_dev # ovs-vsctl --no-wait add-br br0 -- set bridge br0 datapath_type=netdev # o

Re: [ovs-discuss] dpdk virtual device(vdev) device support in ovs.

2016-11-17 Thread devendra rawat
> I am going to implement the support for my non-pci DPDK vdev ethernet > device in openvswitch. A head start will be really appreciated. > > So far what I have understood is that I will need to add a new "struct > netdev_class" for my device in lib/netdev-dpdk.c > > just like > > static const stru

Re: [ovs-discuss] dpdk virtual device(vdev) device support in ovs.

2016-11-09 Thread devendra rawat
Hi, ovs-dpdk supports following four types of device names > dpdk > dpdkr > dpdkvhostuser > dpdkvhostuserclient > > my ethernet device is non-pci vdev. Does openvswitch support DPDK vdev > devices ? > > using ovs-vsctl is there a way to create ovs interface which is mapped to > a DPDK vdev devic

[ovs-discuss] dpdk virtual device(vdev) device support in ovs.

2016-11-07 Thread devendra rawat
ovs-dpdk supports following four types of device names dpdk dpdkr dpdkvhostuser dpdkvhostuserclient my ethernet device is non-pci vdev. Does openvswitch support DPDK vdev devices ? using ovs-vsctl is there a way to create ovs interface which is mapped to a DPDK vdev device ? _