[PATCH 1/2] common/iavf: fix hw mac type for 710 NIC

2023-07-12 Thread Wenjing Qiao
Fix hw mac type according to PCI ID list. Fixes: eb385183edac ("net/iavf/base: update device IDs") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- drivers/common/iavf/iavf_common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/common/iavf/iavf_common.c b/drivers/common/iavf

[PATCH v2] common/iavf: fix hw mac type for 710 NIC

2023-07-12 Thread Wenjing Qiao
Fix hw mac type according to PCI ID list. Fixes: eb385183edac ("net/iavf/base: update device IDs") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- drivers/common/iavf/iavf_common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/common/iavf/iavf_common.c b/drivers/common/iavf

[PATCH v2] net/iavf: fix vlan offload strip flag inconsistency

2023-07-12 Thread Wenjing Qiao
For i40e in-tree kernel driver, it will set strip on when setting filter on. To be consistent with dpdk, disable strip again. Fixes: cb25d4323fbf ("net/avf: enable MAC VLAN and promisc ops") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- Depends-on: patch-129488 ("common/iavf: fix hw mac ty

[PATCH 0/3] fix Rx and Tx queue status get

2023-07-12 Thread Qiming Yang
Some Intel drivers not support queue start/stop ops, it will caused application can't get correct queue status and can't forward packets. This patchset fixed the issue by updating the queue states when the queue is disabled or enabled. Qiming Yang (3): net/ixgbevf: fix Rx and Tx queue status get

[PATCH 1/3] net/ixgbevf: fix Rx and Tx queue status get

2023-07-12 Thread Qiming Yang
Ixgbevf driver don't enable queue start/stop functions, queue status is not updated when the HW queue enabled or disabled. It caused application can't get correct queue status. This patch fixes the issue by updating the queue states when the queue is disabled or enabled. Fixes: 429c6d86b371 ("ixgb

[PATCH 2/3] net/igc: fix Rx and Tx queue status get

2023-07-12 Thread Qiming Yang
Igc driver don't enable queue start/stop functions, queue status is not updated when the HW queue enabled or disabled. It caused application can't get correct queue status. This patch fixes the issue by updating the queue states when the queue is disabled or enabled. Fixes: a5aeb2b9e225 ("net/igc:

[PATCH 3/3] net/e1000: fix Rx and Tx queue status

2023-07-12 Thread Qiming Yang
Igb driver don't enable queue start/stop functions, queue status is not updated when the HW queue enabled or disabled. It caused application can't get correct queue status. This patch fixes the issue by updating the queue states when the queue is disabled or enabled. Fixes: be2d648a2dd3 ("igb: add

Re: 回复: 回复: [PATCH v3] vhost: add notify reply ops to fix message deadlock

2023-07-12 Thread Maxime Coquelin
On 7/12/23 04:17, Rma Ma wrote: >  >  > Since backend and frontend message are synchronous in the same thread, >  >  > there will be a probability of message deadlock. >  >  > Consider each driver to determine whether to wait for response. >  >  > >  >  > Fixes: d90cf7d111ac ("vhost: sup

RE: [PATCH v2] net/iavf: fix vlan offload strip flag inconsistency

2023-07-12 Thread Huang, ZhiminX
-Original Message- From: Wenjing Qiao Sent: Wednesday, July 12, 2023 3:49 PM To: Wu, Jingjing ; Xing, Beilei Cc: dev@dpdk.org; Qiao, Wenjing ; sta...@dpdk.org Subject: [PATCH v2] net/iavf: fix vlan offload strip flag inconsistency For i40e in-tree kernel driver, it will set strip on whe

[PATCH v2 0/3] fix Rx and Tx queue status get

2023-07-12 Thread Qiming Yang
Some Intel drivers not support queue start/stop ops, it will caused application can't get correct queue status and can't forward packets. This patchset fixed the issue by updating the queue states when the queue is disabled or enabled. This issue related commit 141a520b35f7 app/testpmd: fix primary

[PATCH v2 2/3] net/igc: fix Rx and Tx queue status get

2023-07-12 Thread Qiming Yang
Igc driver don't enable queue start/stop functions, queue status is not updated when the HW queue enabled or disabled. It caused application can't get correct queue status. This patch fixes the issue by updating the queue states when the queue is disabled or enabled. Fixes: a5aeb2b9e225 ("net/igc:

[PATCH v2 1/3] net/ixgbevf: fix Rx and Tx queue status get

2023-07-12 Thread Qiming Yang
Ixgbevf driver don't enable queue start/stop functions, queue status is not updated when the HW queue enabled or disabled. It caused application can't get correct queue status. This patch fixes the issue by updating the queue states when the queue is disabled or enabled. Fixes: 429c6d86b371 ("ixgb

[PATCH v2 3/3] net/e1000: fix Rx and Tx queue status

2023-07-12 Thread Qiming Yang
Igb driver don't enable queue start/stop functions, queue status is not updated when the HW queue enabled or disabled. It caused application can't get correct queue status. This patch fixes the issue by updating the queue states when the queue is disabled or enabled. Fixes: be2d648a2dd3 ("igb: add

Re: [RFC v2 2/2] eal: add high-performance timer facility

2023-07-12 Thread Mattias Rönnblom
On 2023-07-07 00:41, Stephen Hemminger wrote: > On Wed, 15 Mar 2023 18:03:42 +0100 > Mattias Rönnblom wrote: > >> The htimer library attempts at providing a timer facility with roughly >> the same functionality, but less overhead and better scalability than >> DPDK timer library. > > I don't und

Re: [PATCH] net/netvsc: remove unused function hn_vf_reset()

2023-07-12 Thread Ferruh Yigit
On 7/11/2023 9:32 PM, Stephen Hemminger wrote: > On Tue, 11 Jul 2023 12:12:30 -0700 > lon...@linuxonhyperv.com wrote: > >> From: Long Li >> >> hn_vf_reset() is defined but not used. Remove it. >> >> Signed-off-by: Long Li > > Acked-by: Stephen Hemminger > Applied to dpdk-next-net/main, thanks

[PATCH] net/i40e: fix comments

2023-07-12 Thread Jieqiang Wang
The limitation of burst size in i40e vector rx has been removed, but the comment lines have not been updated to reflect the code changes. Remove those lines to avoid confusion. Additionally, fix a typo in i40e_tx_queue. Fixes: 9e27f00f3a61 ("net/i40e: fix vector Rx") Cc: jia@intel.com Cc: sta.

[PATCH] doc: announce deprecation of RTE_CPUFLAG_NUMFLAGS

2023-07-12 Thread Sivaprasad Tummala
To allow new cpu features to be added without ABI breakage, RTE_CPUFLAG_NUMFLAGS will be removed in DPDK 23.11 release. Signed-off-by: Sivaprasad Tummala --- doc/guides/rel_notes/deprecation.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/gu

Re: [PATCH] doc: announce deprecation of RTE_CPUFLAG_NUMFLAGS

2023-07-12 Thread Ferruh Yigit
On 7/12/2023 11:18 AM, Sivaprasad Tummala wrote: > To allow new cpu features to be added without ABI breakage, > RTE_CPUFLAG_NUMFLAGS will be removed in DPDK 23.11 release. > > Signed-off-by: Sivaprasad Tummala > --- > doc/guides/rel_notes/deprecation.rst | 3 +++ > 1 file changed, 3 insertions(

Re: [PATCH v1 1/2] dts: add smoke tests

2023-07-12 Thread Jeremy Spewock
On Wed, Jul 12, 2023 at 2:30 AM Juraj Linkeš wrote: > I think we're basically there, just one more point that needs to be > addressed - the send_command_no_output method. > > >> >> > diff --git a/dts/framework/config/conf_yaml_schema.json > b/dts/framework/config/conf_yaml_schema.json > >> >> > i

Re: [PATCH v4 0/2] fix graph issues

2023-07-12 Thread Thomas Monjalon
10/07/2023 09:15, Zhirun Yan: > Fix graph clone issue in functional test. > Correct graph model check in graph core binding. > Update release note for mcore dispatch model. > > > Zhirun Yan (2): > graph: fix graph functional tests with valid params > graph: fix graph model check in core bindi

[PATCH v4 0/2] Add DTS smoke tests

2023-07-12 Thread jspewock
From: Jeremy Spewock Removes the method for sending a command to an interactive shell and ignoring output. RFCs for this patch: * v3: https://mails.dpdk.org/archives/dev/2023-June/269859.html * v2: https://mails.dpdk.org/archives/dev/2023-May/267915.html * v1: https://mails.dpdk.org/archives/dev

[PATCH v4 1/2] dts: add smoke tests

2023-07-12 Thread jspewock
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: Jeremy Spewock --- dts/conf.yaml

[PATCH v4 2/2] dts: add paramiko to dependencies

2023-07-12 Thread jspewock
From: Jeremy Spewock added paramiko to the dependency files Signed-off-by: Jeremy Spewock --- dts/poetry.lock| 160 ++--- dts/pyproject.toml | 1 + 2 files changed, 124 insertions(+), 37 deletions(-) diff --git a/dts/poetry.lock b/dts/poetry.lock

Re: [PATCH v1] app/procinfo: revise display eventdev xstats

2023-07-12 Thread Thomas Monjalon
> > process_eventdev_xstats() function was iterating over eventdev_var[] > > structure even if there is no eventdev present. > > Revised the code to check to iterate and only look for the number of > > eventdevs present in the system. Also, shortened function name to > > eventdev_xstats(). > > > >

Re: [PATCH v1] examples/l3fwd: fix for coverity scan

2023-07-12 Thread Thomas Monjalon
06/07/2023 20:09, Stephen Hemminger: > On Wed, 01 Feb 2023 18:28:44 +0100 > Thomas Monjalon wrote: > > > 10/01/2023 15:56, Mohammad Iqbal Ahmad: > > > This patch fixes (Logically dead code) coverity issue. > > > This patch also fixes (Uninitialized scalar variable) coverity issue. > > > > > > Co

Re: [PATCH v1 1/1] maintainers: update maintainership of power lib

2023-07-12 Thread Thomas Monjalon
28/06/2023 13:56, Hunt, David: > > On 15/06/2023 10:16, Anatoly Burakov wrote: > > Add co-maintainer for power library. > > > > Signed-off-by: Anatoly Burakov > > --- > > MAINTAINERS | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/MAINTAINERS b/MAINTAINERS > > index 906b31f97c..

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

2023-07-12 Thread Thomas Monjalon
Cristian, any comment? 26/06/2023 09: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_R

Re: [PATCH] doc: announce deprecation of RTE_CPUFLAG_NUMFLAGS

2023-07-12 Thread Hemant Agrawal
On 12-Jul-23 3:51 PM, Ferruh Yigit wrote: Caution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, report the message using the 'Report this email' button On 7/12/2023 11:18 AM, Sivaprasad Tummala wrote: To allow new cpu features to be

Re: [PATCH v5 04/11] drivers/crypto: use rte_pktmbuf_mtod_offset

2023-07-12 Thread Hemant Agrawal
Acked-by: Hemant Agrawal

Re: [PATCH v6 1/2] ip_frag: optimize key compare and hash generation

2023-07-12 Thread Thomas Monjalon
11/07/2023 18:52, pbhagavat...@marvell.com: > From: Pavan Nikhilesh > > Use optimized rte_hash_k32_cmp_eq routine for key comparison for > x86 and ARM64. > Use CRC instructions for hash generation on ARM64. > > Signed-off-by: Pavan Nikhilesh > Reviewed-by: Ruifeng Wang > Acked-by: Konstantin A

Re: [PATCH] kni: fix build with Linux 6.5

2023-07-12 Thread Thomas Monjalon
11/07/2023 12:09, Ferruh Yigit: > The get_user_pages_remote() API has been modified in Linux kernel v6.5 > [1], "struct vm_area_struct **vmas" parameter removed from the API. > > To fix KNI build with Linux kernel v6.5, version check added around the > get_user_pages_remote() API. > > [1] > ca5e8

Re: [PATCH] devtools: fix bad substitution

2023-07-12 Thread Thomas Monjalon
11/07/2023 09:16, Raslan Darawsheh: > When running check-git-log, it showed a Bad substitution. > > It is fixed by using tr to escape the open parenthesis. > > Fixes: 6fd14c1b58e6 ("devtools: fix mailmap check for parentheses") > Cc: tho...@monjalon.net > > Suggested-by: Thomas Monjalon > Signe

Re: [PATCH v1] dts: create tarball from git ref

2023-07-12 Thread Thomas Monjalon
28/04/2023 21:38, Jeremy Spewock: > Acked-by: Jeremy Spweock > > On Thu, Apr 20, 2023 at 10:16 AM Juraj Linkeš > wrote: > > > Add additional convenience options for specifying what DPDK version to > > test. > > > > Signed-off-by: Juraj Linkeš Applied, thanks. Sorry for the delay.

Re: [PATCH v3] dts: replace pexpect with fabric

2023-07-12 Thread Thomas Monjalon
21/06/2023 20:33, Jeremy Spewock: > Acked-by: Jeremy Spewock > > On Fri, Jun 9, 2023 at 5:46 AM Juraj Linkeš > wrote: > > > Pexpect is not a dedicated SSH connection library while Fabric is. With > > Fabric, all SSH-related logic is provided and we can just focus on > > what's DTS specific. > >

RE: [PATCH] crypto/openssl: fix segfault due to uninitialized var

2023-07-12 Thread Akhil Goyal
> Subject: RE: [PATCH] crypto/openssl: fix segfault due to uninitialized var > > > > > In some openSSL 3 libraries, uninitialized output variable cause segfault. > > It is > > always nice to initialize it. > > > > Fixes: 3b7d638fb11f ("crypto/openssl: support asymmetric SM2") Bugzilla ID: > > 125

RE: [PATCH] crypto/openssl: check for SM2 support in openssl 3.x lib

2023-07-12 Thread Akhil Goyal
> Subject: RE: [PATCH] crypto/openssl: check for SM2 support in openssl 3.x lib > > > > > In some version of openSSL 3 lib (for an instance, in linux distribution), > > if SM2 > > is not supported, driver should return error. > > > > Fixes: 3b7d638fb11f ("crypto/openssl: support asymmetric SM2")

Registration Reminder - DPDK Dublin Summit, Sep. 2023

2023-07-12 Thread Nathan Southern
Good afternoon DPDK Community, September 12-13, 2023 we will have the DPDK Summit at the Gibson Hotel in Point Square in Dublin. Registration and attendance for this event are *free!* Our call for speakers has just been finalized, and talks have been chosen - information about this, including a s

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

2023-07-12 Thread Sivaprasad Tummala
Deprecation notice to add "rte_eventdev_port_data" field to ``rte_event_fp_ops`` for callback support. Signed-off-by: Sivaprasad Tummala --- doc/guides/rel_notes/deprecation.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/d

release candidate 23.07-rc3

2023-07-12 Thread Thomas Monjalon
A new DPDK release candidate is ready for testing: https://git.dpdk.org/dpdk/tag/?id=v23.07-rc3 There are 139 new patches in this snapshot. Release notes: https://doc.dpdk.org/guides/rel_notes/release_23_07.html Only documentation and bug fixes should be accepted at this stage.

[PATCH v5 0/2] Add DTS smoke tests

2023-07-12 Thread jspewock
From: Jeremy Spewock The previous version of this patch removed a method in the InteractiveShell class but after reading the comments over again and looking at the code, there was another method that now becomes unused and not needed. This method for emptying the stdout buffer is removed in this

[PATCH v5 1/2] dts: add smoke tests

2023-07-12 Thread jspewock
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: Jeremy Spewock --- dts/conf.yaml

[PATCH v5 2/2] dts: add paramiko to dependencies

2023-07-12 Thread jspewock
From: Jeremy Spewock added paramiko to the dependency files Signed-off-by: Jeremy Spewock --- dts/poetry.lock| 160 ++--- dts/pyproject.toml | 1 + 2 files changed, 124 insertions(+), 37 deletions(-) diff --git a/dts/poetry.lock b/dts/poetry.lock

RE: [PATCH] doc: announce ethdev operation struct changes

2023-07-12 Thread Feifei Wang
> -Original Message- > From: Feifei Wang > Sent: Tuesday, July 4, 2023 4:17 PM > To: Feifei Wang > Cc: dev@dpdk.org; nd ; Honnappa Nagarahalli > ; Ruifeng Wang > ; Konstantin Ananyev > ; m...@smartsharesystems.com; Ferruh > Yigit ; tho...@monjalon.net; Andrew Rybchenko > ; nd > Subject: R

[PATCH] net/nfp: fix invalid control message packets

2023-07-12 Thread Chaoyong He
From: Long Wu If we add two cards that uses flower firmware into one dpdk-testpmd, NFP PMD will printf error log. The reason is that the second card uses the control VNIC Rx queue of the first card. Because rte_eth_dma_zone_reserve() will reserve new DMA zone if DMA zone's name is unique. But if

RE: [PATCH] doc: announce inclusive naming macro name changes

2023-07-12 Thread Chaoyong He
> > -Original Message- > > From: Chaoyong He > > Sent: Wednesday, June 7, 2023 10:44 AM > > To: dev@dpdk.org > > Cc: oss-driv...@corigine.com; niklas.soderl...@corigine.com; Long Wu > > ; Chaoyong He > > Subject: [PATCH] doc: announce inclusive naming macro name changes > > > > From: Long

[PATCH] app/test:add NIC parameter exception handling

2023-07-12 Thread Kaisen You
Add NIC exception parameter handling to dpdk_test process, program exits when carrying unbound vfio NIC parameters. Fixes: 50247fe03fe0 ("test/timer: exercise new APIs in secondary process") Cc: sta...@dpdk.org Signed-off-by: Kaisen You --- app/test/test.c | 18 ++ 1 file change

Re: [PATCH v5 1/2] dts: add smoke tests

2023-07-12 Thread Juraj Linkeš
On Wed, Jul 12, 2023 at 10:00 PM Jeremy Spewock wrote: > > This fails to apply because it modifies some of the same files that the > previous DTS patches that were applied today also change. These changes only > modify things in dts/ which isn't currently being used in CI testing so there > wou