Re: [PATCH v7 1/1] dts: add smoke tests

2023-07-14 Thread Jeremy Spewock
On Fri, Jul 14, 2023 at 11:30 AM Juraj Linkeš wrote: > On Fri, Jul 14, 2023 at 4:47 PM Patrick Robb wrote: > > > > > > Tested-by: Patrick Robb > > Have you tested with a non-root user? The unit tests are failing for me. > We have been running this as root in testing and there is an issue with

RE: [PATCH v2] eal: avoid issues in macro expansion of alignment

2023-07-14 Thread Morten Brørup
Stephen, perhaps you can solve it using __builtin_constant_p() in the macro.-MortenSent from smartphone. Please excuse brevity and spelling. Oprindelig besked Fra: Stephen Hemminger Dato: 14.07.2023 18.37 (GMT+01:00) Til: Morten Brørup Cc: dev@dpdk.org, pbhagavat...@marvell.

Re: [PATCH v2] eal: avoid issues in macro expansion of alignment

2023-07-14 Thread Stephen Hemminger
On Wed, 5 Jul 2023 00:16:50 +0200 Morten Brørup wrote: > > From: Stephen Hemminger [mailto:step...@networkplumber.org] > > Sent: Tuesday, 4 July 2023 18.01 > > > > On Tue, 4 Jul 2023 10:43:40 +0200 > > Morten Brørup wrote: > > > > > > From: Stephen Hemminger [mailto:step...@networkplumber.or

Re: [PATCH v7 1/1] dts: add smoke tests

2023-07-14 Thread Juraj Linkeš
On Fri, Jul 14, 2023 at 4:47 PM Patrick Robb wrote: > > > Tested-by: Patrick Robb Have you tested with a non-root user? The unit tests are failing for me.

Re: [PATCH v7 1/1] dts: add smoke tests

2023-07-14 Thread Patrick Robb
Tested-by: Patrick Robb

[PATCH 1/1] net/sfc: add explicit fail path for unknown tunnel flow type

2023-07-14 Thread Ivan Malov
The driver supports flow tunnel offload. When the parsed rule type is unknown, which must not happen, the driver does not properly indicate the failure in non-debug builds. That presumably makes Coverity report possible NULL pointer dereference in regard with uninitialised HW match specification (w

RE: [PATCH] doc: deprecation notice to add callback data to rte_event_fp_ops

2023-07-14 Thread Tummala, Sivaprasad
[AMD Official Use Only - General] > -Original Message- > From: Jerin Jacob > Sent: Thursday, July 13, 2023 4:11 PM > To: Tummala, Sivaprasad > Cc: dev@dpdk.org; Yigit, Ferruh ; > bruce.richard...@intel.com; david.march...@redhat.com; tho...@monjalon.net > Subject: Re: [PATCH] doc: deprec

RE: [PATCH] usertools: enhance logic to display NUMA

2023-07-14 Thread Varghese, Vipin
[AMD Official Use Only - General] > -Original Message- > From: Thomas Monjalon > Sent: Tuesday, July 11, 2023 9:56 PM > To: Varghese, Vipin ; Stephen Hemminger > > Cc: david.march...@redhat.com; Tummala, Sivaprasad > ; dev@dpdk.org > Subject: Re: [PATCH] usertools: enhance logic to displ

RE: [PATCH v2] net/mlx5: fix lro update tcp header cksum error

2023-07-14 Thread Slava Ovsiienko
Hi, rte_raw_cksum() is doing __rte_raw_cksum_reduce(), so the returned result is always below 0x1, upper half is zero. We add 3 16-bit values in range 0...0x, what is possible result? Let's consider the ranges: upper/lower halves 0 0..0x, no carry 1 0..0x, one c

[PATCH v2] app/test-pipeline: relax RSS hash requirement

2023-07-14 Thread Feifei Wang
For some drivers which can not support the configured RSS hash functions, the thread reports 'invalid rss_hf' when doing device configure. For example, i40e driver can not support 'RTE_ETH_RSS_IPV4', 'RTE_ETH_RSS_IPV6' and 'RTE_ETH_RSS_NONFRAG_IPV6_OTHER', thus it can not run successfully in test-

[PATCH 3/3] doc: announce bonding function change

2023-07-14 Thread Chaoyong He
In order to support inclusive naming, some of the function in DPDK will need to be renamed. Do this through deprecation process now for 23.07. Signed-off-by: Long Wu Signed-off-by: Chaoyong He --- app/test-pmd/testpmd.c| 4 +- app/test/test_link_bonding.c | 10

[PATCH 2/3] doc: announce bonding data change

2023-07-14 Thread Chaoyong He
In order to support inclusive naming, the data structure of bonding 8023 info need to be renamed. Do this through deprecation process now for 23.07. Signed-off-by: Chaoyong He --- doc/guides/rel_notes/deprecation.rst | 3 +++ drivers/net/bonding/rte_eth_bond_8023ad.c | 2 +- drivers/net/bon

[PATCH 0/3] announce bonding macro and function change

2023-07-14 Thread Chaoyong He
In order to support inclusive naming, some of the macro and function in DPDK will need to be renamed. Do this through deprecation process now for 23.07. Chaoyong He (2): doc: announce bonding data change doc: announce bonding function change Long Wu (1): doc: announce bonding macro change

[PATCH 1/3] doc: announce bonding macro change

2023-07-14 Thread Chaoyong He
From: Long Wu In order to support inclusive naming, some of the macro in DPDK will need to be renamed. Do this through deprecation process now for 23.07. Signed-off-by: Long Wu Reviewed-by: Chaoyong He --- app/test-pmd/testpmd.c | 2 +- doc/guides/rel_notes/deprecation.rst |

RE: [PATCH] app/test-pipeline: relax RSS hash requirement

2023-07-14 Thread Feifei Wang
> -Original Message- > From: lihuisong (C) > Sent: Friday, July 14, 2023 3:50 PM > To: Feifei Wang ; Cristian Dumitrescu > > Cc: dev@dpdk.org; nd ; Ruifeng Wang > ; Trevor Tao > Subject: Re: [PATCH] app/test-pipeline: relax RSS hash requirement > > > 在 2023/6/26 15:45, Feifei Wang 写道

Re: [PATCH] app/test-pipeline: relax RSS hash requirement

2023-07-14 Thread lihuisong (C)
在 2023/6/26 15:45, Feifei Wang 写道: For some drivers which can not support the configured RSS hash functions, the thread reports 'invalid rss_hf' when doing device configure. For example, i40e driver can not support 'RTE_ETH_RSS_IPV4', 'RTE_ETH_RSS_IPV6' and 'RTE_ETH_RSS_NONFRAG_IPV6_OTHER', th

Re: [PATCH v7 1/1] dts: add smoke tests

2023-07-14 Thread Juraj Linkeš
On Thu, Jul 13, 2023 at 6:54 PM wrote: > > From: Jeremy Spewock > > Adds a new test suite for running smoke tests that verify general > configuration aspects of the system under test. If any of these tests > fail, the DTS execution terminates as part of a "fail-fast" model. > > Signed-off-by: Jer

Re: [PATCH V6 0/5] app/testpmd: support multiple process attach and detach port

2023-07-14 Thread lihuisong (C)
Hi Ferruh, Can you take a look at this series? I added the call stack info for segment fault. /Huisong 在 2023/5/27 10:11, Huisong Li 写道: This patchset fix some bugs and support attaching and detaching port in primary and secondary. --- -v6: adjust rte_eth_dev_is_used position based on alph