Re: [dpdk-dev] [PATCH v2 2/3] net/szedata2: add support for new NIC

2018-04-18 Thread Matej Vido
On 13.04.2018 18:29, Ferruh Yigit wrote: On 4/13/2018 4:03 PM, Jan Remeš wrote: It is mentioned on the website with the packages itself. The current version works with the reworked PMD - there is a headline which says: "DPDK from 18.05" (since we expect the patches to land in the upcoming releas

Re: [dpdk-dev] [PATCH v2 2/3] net/szedata2: add support for new NIC

2018-04-13 Thread Ferruh Yigit
On 4/13/2018 4:03 PM, Jan Remeš wrote: > It is mentioned on the website with the packages itself. The current > version works with the reworked PMD - there is a headline which says: > "DPDK from 18.05" (since we expect the patches to land in the upcoming > release; we will update it if this does no

Re: [dpdk-dev] [PATCH v2 2/3] net/szedata2: add support for new NIC

2018-04-13 Thread Jan Remeš
It is mentioned on the website with the packages itself. The current version works with the reworked PMD - there is a headline which says: "DPDK from 18.05" (since we expect the patches to land in the upcoming release; we will update it if this does not happen). The older version is still availabl

Re: [dpdk-dev] [PATCH v2 2/3] net/szedata2: add support for new NIC

2018-04-13 Thread Ferruh Yigit
On 4/13/2018 9:17 AM, Jan Remeš wrote: >> >> Hi Matej, >> >> Where szedata_get_area_numa_node() is defined? >> Is it possible that you are missing a patch? >> >> Thanks, >> ferruh > > Hi Ferruh, > > the new PMD requires an updated version of libsze2 and drivers. We > have just published the updat

Re: [dpdk-dev] [PATCH v2 2/3] net/szedata2: add support for new NIC

2018-04-13 Thread Jan Remeš
> > Hi Matej, > > Where szedata_get_area_numa_node() is defined? > Is it possible that you are missing a patch? > > Thanks, > ferruh Hi Ferruh, the new PMD requires an updated version of libsze2 and drivers. We have just published the updated packages here: https://www.netcope.com/en/company/comm

Re: [dpdk-dev] [PATCH v2 2/3] net/szedata2: add support for new NIC

2018-04-12 Thread Ferruh Yigit
On 4/12/2018 8:41 AM, Matej Vido wrote: > + if (pci_dev->id.device_id == PCI_DEVICE_ID_NETCOPE_NFB200G2QL) { > + unsigned int i; > + unsigned int rx_queues = max_rx_queues / max_ports; > + unsigned int tx_queues = max_tx_queues / max_ports; > + > +

[dpdk-dev] [PATCH v2 2/3] net/szedata2: add support for new NIC

2018-04-12 Thread Matej Vido
This patch adds support for new NIC NFB-200G2QL. At the probing stage numa nodes for the DMA queues are identified and the appropriate number of ports is allocated. DMA queues residing on the same numa node are grouped in the same port. Signed-off-by: Matej Vido --- v2: Rebased on top of dpdk-ne