Re: [dpdk-dev] [PATCH v1 06/11] config: add build enablement for IPN3KE

2019-03-09 Thread Xu, Rosen
Hi Ferruh, It seems I have missed some comments, so just reply this again. > -Original Message- > From: Yigit, Ferruh [mailto:ferruh.yi...@linux.intel.com] > Sent: Wednesday, March 06, 2019 20:45 > To: Xu, Rosen ; dev@dpdk.org > Cc: Yigit, Ferruh ; Zhang, Tianfei > ; Wei, Dan ; Pei, Andy

Re: [dpdk-dev] [PATCH v2] ring: enforce reading the tails before ring operations

2019-03-09 Thread Gavin Hu (Arm Technology China)
> -Original Message- > From: Honnappa Nagarahalli > Sent: Saturday, March 9, 2019 7:48 AM > To: tho...@monjalon.net; Ananyev, Konstantin > ; Gavin Hu (Arm Technology China) > > Cc: Ilya Maximets ; dev@dpdk.org; nd > ; jer...@marvell.com; hemant.agra...@nxp.com; > nipun.gu...@nxp.com; ol

Re: [dpdk-dev] [PATCH 4/4] .gitignore: ignore build directories from test-meson-build

2019-03-09 Thread Thomas Monjalon
09/03/2019 04:03, Stephen Hemminger: > On Sat, 09 Mar 2019 01:47:32 +0100 > Thomas Monjalon wrote: > > > 06/03/2019 18:05, Bruce Richardson: > > > test-meson-build.sh generates multiple build directories for various > > > targets. As these follow a few known patterns of reasonable lengths, > > >

[dpdk-dev] [Bug 205] make test fails with DPDK 19.02 (KeyError: 'Command')

2019-03-09 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=205 Rami Rosen (ramir...@gmail.com) changed: What|Removed |Added Status|CONFIRMED |RESOLVED Resolution|---

Re: [dpdk-dev] [PATCH 4/4] .gitignore: ignore build directories from test-meson-build

2019-03-09 Thread Rami Rosen
> Thomas Monjalon wrote: >Yes, but "git ls build*" is not empty because of buildtools/ >Could be "build" and "build-*". +1 > > > > >

[dpdk-dev] [PATCH v2 01/10] net/atlantic: fix negative error codes

2019-03-09 Thread Igor Russkikh
These are just convention breakage on rte_errno, no real harm from that. Cc: sta...@dpdk.org Signed-off-by: Igor Russkikh Fixes: 2b1472d7150c ("net/atlantic: implement Tx path") --- drivers/net/atlantic/atl_rxtx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/ne

[dpdk-dev] [PATCH v2 00/10] net/atlantic: bugfixes and code cleanup

2019-03-09 Thread Igor Russkikh
The patchset mainly fixes some Coverity issues, couple of minor bugs and overflows. It also improves eeprom get/set logic with ability of custom device address and dump length. v2: better git log, line lengths, Fixes tags. Igor Russkikh (7): net/atlantic: fix negative error codes net/atlant

[dpdk-dev] [PATCH v2 02/10] net/atlantic: remove unused variable

2019-03-09 Thread Igor Russkikh
Found by coverity scan. Signed-off-by: Igor Russkikh --- drivers/net/atlantic/hw_atl/hw_atl_b0.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/net/atlantic/hw_atl/hw_atl_b0.c b/drivers/net/atlantic/hw_atl/hw_atl_b0.c index 9400e0edb999..53fd8e9f0237 100644 ---

[dpdk-dev] [PATCH v2 03/10] net/atlantic: extra checks for error codes

2019-03-09 Thread Igor Russkikh
Found by Coverity scan. Checks are useless because at these code places err is always zero. Signed-off-by: Igor Russkikh --- drivers/net/atlantic/hw_atl/hw_atl_utils.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/net/atlantic/hw_atl/hw_atl_utils.c b/drivers/ne

[dpdk-dev] [PATCH v2 05/10] net/atlantic: use EEPROM magic as a device address

2019-03-09 Thread Igor Russkikh
From: Pavel Belous Default dev addr is replaced with magic field from the request. Length is allowed to be less than maximum. SMBUS access bit definitions also better organised now. Signed-off-by: Igor Russkikh Signed-off-by: Pavel Belous --- drivers/net/atlantic/atl_ethdev.c | 24

[dpdk-dev] [PATCH v2 04/10] net/atlantic: fix buffer overflow

2019-03-09 Thread Igor Russkikh
From: Pavel Belous Found by Coverity scan. This is a real memory corruption. There is no need in extra RTE_ALIGN macros since the request/result structures are 4-byte aligned by definition. Cc: sta...@dpdk.org Fixes: ce4e8d418097 ("net/atlantic: implement EEPROM get/set") Signed-off-by: Igor Rus

[dpdk-dev] [PATCH v2 07/10] net/atlantic: fix link configuration

2019-03-09 Thread Igor Russkikh
In case link speed is re configured after port start, it does not takes the requested speed value, but instead just sets full autoneg mask. Cc: sta...@dpdk.org Fixes: 7943ba05f67c ("net/atlantic: add link status and interrupt management") Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl

[dpdk-dev] [PATCH v2 08/10] net/atlantic: eliminate excessive log levels on Rx/Tx

2019-03-09 Thread Igor Russkikh
Default rxtx logging used ERR level, that caused logger to always trigger. That may cause perf degradation even if logger was not enabled but compiled in. Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_rxtx.c | 16 1 file changed, 4 insertions(+), 12 deletions(-) dif

[dpdk-dev] [PATCH v2 06/10] net/atlantic: fix EEPROM get for small and uneven lengths

2019-03-09 Thread Igor Russkikh
From: Pavel Belous Fixes: ce4e8d418097 ("net/atlantic: implement EEPROM get/set") Cc: sta...@dpdk.org Signed-off-by: Igor Russkikh Signed-off-by: Pavel Belous --- .../net/atlantic/hw_atl/hw_atl_utils_fw2x.c | 28 --- 1 file changed, 24 insertions(+), 4 deletions(-) diff --gi

[dpdk-dev] [PATCH v2 10/10] net/atlantic: fix xstats to return correct number of items

2019-03-09 Thread Igor Russkikh
Max number of xstats items was returned instead of actual number of filled in records. Cc: sta...@dpdk.org Fixes: fbe059e87209 ("net/atlantic: implement device statistics") Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-

[dpdk-dev] [PATCH v2 09/10] net/atlantic: fix missing VLAN filter offload

2019-03-09 Thread Igor Russkikh
Original vlan offload code declared callbacks, but did not enable the feature offload bit Cc: sta...@dpdk.org Fixes: f7c2c2c8c558 ("net/atlantic: implement VLAN filters and offloads") Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 3 ++- 1 file changed, 2 insertions(+), 1 d

Re: [dpdk-dev] [PATCH v2 04/10] net/atlantic: fix buffer overflow

2019-03-09 Thread Stephen Hemminger
On Sat, 9 Mar 2019 14:03:30 + Igor Russkikh wrote: > From: Pavel Belous > > Found by Coverity scan. This is a real memory corruption. > There is no need in extra RTE_ALIGN macros since the > request/result structures are 4-byte aligned by definition. When fixing bugs found by Coverity it i

[dpdk-dev] [Bug 222] When setting CONFIG_RTE_LIBRTE_PDUMP=n, build fails with "undefined reference to `test_pdump'"

2019-03-09 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=222 Bug ID: 222 Summary: When setting CONFIG_RTE_LIBRTE_PDUMP=n, build fails with "undefined reference to `test_pdump'" Product: DPDK Version: 19.02 Hardware: x86 OS: Li

Re: [dpdk-dev] [PATCH v1 05/11] drivers/net/ipn3ke: add IPN3KE PMD driver

2019-03-09 Thread Luca Boccassi
On Thu, 2019-02-28 at 15:13 +0800, Rosen Xu wrote: > Add Intel FPGA Acceleration NIC IPN3KE PMD driver. > > Signed-off-by: Rosen Xu > Signed-off-by: Andy Pei > Signed-off-by: Dan Wei > --- >  drivers/net/Makefile  |    1 + >  drivers/net/ipn3ke/Makefile  

Re: [dpdk-dev] mlx5 under FreeBSD

2019-03-09 Thread Shahaf Shuler
Thursday, March 7, 2019 5:28 PM, Mit Matelske: > Subject: Re: [dpdk-dev] mlx5 under FreeBSD > > > > > > - Original Message - > > From: "shahafs" > > To: "Mit Matelske" > > > > What you print here is the verbs layer, and looks OK. I am more interested > on the values before the command r