[dpdk-dev] [PATCH 0/2] Mellanox ConnectX-3 PMD

2015-03-01 Thread Keunhong Lee
How fast does this driver perform? Is it capable for sending/receiving 64B packets at 40G line rate? I'm using another version of user driver and it is not scalable for line rate, regardless of the number of TX cores. Keunhong. 2015. 1. 30. ?? 12:22? "Adrien Mazarguil" ?? ??: > This PMD adds supp

[dpdk-dev] [PATCH] pci: save list of detached devices, and re-probe during driver unload

2015-03-01 Thread Raz Amir
Can you refer me to the logging facilities you are referring to for this Freebsd driver? device_probe_and_attach is an API in Freebsd kernel which is called during boot for finding the relevant driver for each device. I added manual call to it in the driver unload for re-probing and re-matching the

[dpdk-dev] [PATCH v3 0/3] Mellanox ConnectX-3 PMD

2015-03-01 Thread Gleb Natapov
On Fri, Feb 27, 2015 at 07:38:59PM +0100, Adrien Mazarguil wrote: > On Thu, Feb 26, 2015 at 03:49:07PM +0200, Gleb Natapov wrote: > > On Thu, Feb 26, 2015 at 02:36:27PM +0100, Thomas Monjalon wrote: > > > 2015-02-26 13:51, Gleb Natapov: > > > > Did git pull today. After enabling mlnx pmd compilatio

[dpdk-dev] [PATCH] pci: save list of detached devices, and re-probe during driver unload

2015-03-01 Thread Neil Horman
On Sun, Mar 01, 2015 at 04:21:10PM +0200, Raz Amir wrote: > Can you refer me to the logging facilities you are referring to for this > Freebsd driver? > device_probe_and_attach is an API in Freebsd kernel which is called during rte_log and friends. > boot for finding the relevant driver for each d

[dpdk-dev] [PATCH] pci: save list of detached devices, and re-probe during driver unload

2015-03-01 Thread Neil Horman
On Thu, Feb 26, 2015 at 06:33:20AM +, Raz Amir wrote: > Added code that saves the pointers to the detached devices, during > driver loading, and during driver unloading, go over the list, > and re-attach them by calling device_probe_and_attach > on each device. > > Signed-off-by: Raz Amir > -