[dpdk-dev] i40e_aq_get_phy_capabilities() fails when using SFP+ with no link

2017-01-10 Thread Christos Ricudis
all on any ports. A reboot solved this, and I am now trying to replicate this behaviour under more controlled conditions. Best regards, Christos Ricudis.

Re: [dpdk-dev] i40e_aq_get_phy_capabilities() fails when using SFP+ with no link

2017-01-10 Thread Christos Ricudis
will report on my testing. Shouldn’t unsupported SFP+s be blacklisted in the I40E driver? Best regards, Christos Ricudis > > Regards, > Helin > > -Original Message- > From: Olivier MATZ [mailto:olivier.m...@6wind.com] > Sent: Tuesday, January 10, 2017 11:29 PM >

Re: [dpdk-dev] i40e_aq_get_phy_capabilities() fails when using SFP+ with no link

2017-01-18 Thread Christos Ricudis
y > with this version. > > Regards, > Olivier After further testing, I can confirm that this issue persists with supported Intel SFPs (Intel FTLX8571D3BCV-IT). As for the changeset introducing this issue - we had failure reports with previous DPDK versions, probably related to LSE handling, but these weren’t properly investigated. The change in 16.11 which calls get_phy_capability too early in initialization stage might have alleviated the issue making it easier for us to detect and confirm. Best regards, Christos Ricudis.

[dpdk-dev] [PATCH] net/bnxt: add missing counters to xstats

2020-04-13 Thread Christos Ricudis
Signed-off-by: Christos Ricudis --- drivers/net/bnxt/bnxt_stats.c | 127 ++ 1 file changed, 127 insertions(+) diff --git a/drivers/net/bnxt/bnxt_stats.c b/drivers/net/bnxt/bnxt_stats.c index 4668629..e8971ab 100644 --- a/drivers/net/bnxt/bnxt_stats.c

[dpdk-dev] [PATCH] eal: Place EAL thread stack in a reserved per-lcore memzone

2020-04-13 Thread Christos Ricudis
Reserve a per-lcore 4MB memzone and allocate thread stack of EAL threads there for better NUMA locality of stack-allocated variables Signed-off-by: Christos Ricudis --- lib/librte_eal/linux/eal.c | 20 1 file changed, 20 insertions(+) diff --git a/lib/librte_eal/linux

[dpdk-dev] [PATCH] usertools: decode PCI device name as UTF-8

2020-04-13 Thread Christos Ricudis
, 100GbE single-port QSFP28, PCIe3.0 x16, tall bracket; MCX515A-CCAT Signed-off-by: Christos Ricudis --- usertools/dpdk-devbind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py index b1d1498..8ec1703 100755 --- a/usertools

[dpdk-dev] [PATCH v2] usertools: decode PCI device name as UTF-8

2020-04-13 Thread Christos Ricudis
single-port QSFP28, PCIe3.0 x16, tall bracket; MCX515A-CCAT Signed-off-by: Christos Ricudis --- usertools/dpdk-devbind.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py index b1d1498..fad0eaa 100755 --- a/usertools/dpdk

[dpdk-dev] [PATCH v2] net/bnxt: add missing counters to xstats

2020-04-13 Thread Christos Ricudis
--- v2: * Fix checkpatch issues Christos Ricudis (1): net/bnxt: add missing counters to xstats drivers/net/bnxt/bnxt_stats.c | 127 ++ 1 file changed, 127 insertions(+) -- 1.8.3.1

[dpdk-dev] [PATCH v2] net/bnxt: add missing counters to xstats

2020-04-13 Thread Christos Ricudis
Add several missing hardware counters to xstats Signed-off-by: Christos Ricudis --- drivers/net/bnxt/bnxt_stats.c | 127 ++ 1 file changed, 127 insertions(+) diff --git a/drivers/net/bnxt/bnxt_stats.c b/drivers/net/bnxt/bnxt_stats.c index 4668629