RE: [PATCH dpdk 0/2] IPv6: Fix coverity issues

2024-11-24 Thread Mcnamara, John
> -Original Message- > From: David Marchand > Sent: Tuesday, November 5, 2024 9:06 PM > To: Mcnamara, John ; Patrick Robb > > Cc: dev@dpdk.org; Robin Jarry ; Morten Brørup > > Subject: Re: [PATCH dpdk 0/2] IPv6: Fix coverity issues > > Hello John, Patrick, > > On Thu, Oct 24, 2024 at 5

[PATCH] vhost: clear ring addresses when getting vring base

2024-11-24 Thread jianping.zhao
From: "Jianping.zhao" Clear ring addresses during vring base retrieval to handle guest reboot scenarios correctly. This is particularly important for vdpa-blk devices where the following issue occurs: When a guest OS with vdpa-blk device reboots, during UEFI stage, only one vring is actually use

[PATCH v2] vhost/user: clear ring addresses when getting vring base

2024-11-24 Thread Jianping Zhao
Clear ring addresses during vring base retrieval to handle guest reboot scenarios correctly. This is particularly important for vdpa-blk devices where the following issue occurs: When a guest OS with vdpa-blk device reboots, during UEFI stage, only one vring is actually used and configured. Howeve

[PATCH v3] vhost/user: clear ring addresses when getting vring base

2024-11-24 Thread Jianping Zhao
Clear ring addresses during vring base retrieval to handle guest reboot scenarios correctly. This is particularly important for vdpa-blk devices where the following issue occurs: When a guest OS with vdpa-blk device reboots, during UEFI stage, only one vring is actually used and configured. Howeve

[PATCH v1] net/i40e: updated latest recommended matching list

2024-11-24 Thread hailinx
Signed-off-by: hailinx --- doc/guides/nics/i40e.rst | 8 1 file changed, 8 insertions(+) diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index ca6caa0cff..35585efc44 100644 --- a/doc/guides/nics/i40e.rst +++ b/doc/guides/nics/i40e.rst @@ -104,6 +104,10 @@ For X710/XL710

Recall: [PATCH v1] net/ice: updated latest recommended matching list

2024-11-24 Thread Xu, HailinX
Xu, HailinX would like to recall the message, "[PATCH v1] net/ice: updated latest recommended matching list".

[PATCH v1] net/ice: updated latest recommended matching list

2024-11-24 Thread hailinx
Signed-off-by: hailinx --- doc/guides/nics/ice.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index eac1f2627b..a32fb27b24 100644 --- a/doc/guides/nics/ice.rst +++ b/doc/guides/nics/ice.rst @@ -79,6 +79,10 @@ are listed in the Tested

[PATCH] vhost: clear ring addresses when getting vring base

2024-11-24 Thread jianping.zhao
Clear ring addresses during vring base retrieval to handle guest reboot scenarios correctly. This is particularly important for vdpa-blk devices where the following issue occurs: When a guest OS with vdpa-blk device reboots, during UEFI stage, only one vring is actually used and configured. Howeve

[PATCH v1] net/ice: updated latest recommended matching list

2024-11-24 Thread hailinx
Signed-off-by: hailinx --- doc/guides/nics/ice.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index eac1f2627b..a32fb27b24 100644 --- a/doc/guides/nics/ice.rst +++ b/doc/guides/nics/ice.rst @@ -79,6 +79,10 @@ are listed in the Tested

Re: [PATCH] net/txgbe: fix a mass of interrupts

2024-11-24 Thread Stephen Hemminger
On Tue, 19 Nov 2024 10:02:23 +0800 Jiawen Wu wrote: > On Tue, Nov 19, 2024 3:59 AM, Ferruh Yigit wrote: > > On 11/15/2024 8:33 AM, Jiawen Wu wrote: > > > Since firmware version 0x20010, GPIO interrupt enable is set to 0xd by > > > default, which means enable bit 0 'tx_fault'. And GPIO interrupt

Re: [PATCH] app/testpmd: add L4 port to verbose output

2024-11-24 Thread Stephen Hemminger
On Thu, 15 Aug 2024 15:20:51 +0100 Alex Chapman wrote: > To help distinguish packets we want to add more identifiable > information and print port number for all packets. > This will make packet metadata more uniform as previously it > only printed port number for encapsulated packets. > > Bugzi

DPDK Release Status Meeting 2024-11-21

2024-11-24 Thread Mcnamara, John
Release status meeting minutes 2024-11-21 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * ARM * Debian/Microsoft * Intel * Marvell * Nvidia Release Dates - The following are the current/updated working

Re: [PATCH v3 3/3] net/hns3: fix Rx packet without CRC data

2024-11-24 Thread Stephen Hemminger
On Fri, 19 Jul 2024 17:04:15 +0800 Jie Hai wrote: > From: Dengdui Huang > > When KEEP_CRC offload is enabled, the CRC data is still stripped > in following cases: > 1. For HIP08 network engine, the packet type is TCP and the length >is less than or equal to 60B. > 2. For HIP09 network engin

[PATCH 2/3] eventdev: fix uninitialized variable

2024-11-24 Thread Wenwu Ma
This patch fixes the variable 'events' may be used uninitialized. Fixes: 7901eac3409a ("eventdev: add crypto adapter implementation") Cc: sta...@dpdk.org Signed-off-by: Wenwu Ma --- lib/eventdev/rte_event_crypto_adapter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/eventdev/rte_even

[PATCH 1/3] net/bnxt: fix uninitialized variable

2024-11-24 Thread Wenwu Ma
This patch fixes the variable 'total_pages' may be used uninitialized. Fixes: 80317ff6adfd ("net/bnxt/tf_core: support Thor2") Cc: sta...@dpdk.org Signed-off-by: Wenwu Ma --- drivers/net/bnxt/tf_core/v3/tfc_tbl_scope.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/

[PATCH 0/3] fix uninitialized variable

2024-11-24 Thread Wenwu Ma
fix uninitialized variables in batches Wenwu Ma (3): net/bnxt: fix uninitialized variable eventdev: fix uninitialized variable eventdev: fix uninitialized variable drivers/net/bnxt/tf_core/v3/tfc_tbl_scope.c | 2 +- lib/eventdev/rte_event_crypto_adapter.c | 1 + lib/eventdev/rte_event_

[PATCH 3/3] eventdev: fix uninitialized variable

2024-11-24 Thread Wenwu Ma
This patch fixes the variable 'events' may be used uninitialized. Fixes: 3c89e8c42022 ("eventdev/dma: support adapter service function") Cc: sta...@dpdk.org Signed-off-by: Wenwu Ma --- lib/eventdev/rte_event_dma_adapter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/eventdev/rte_even