[PATCH] doc: announce IPsec support on Arm

2022-11-07 Thread Ruifeng Wang
Updated release notes about the SNOW-3G and ZUC support on ARM platform. Signed-off-by: Ruifeng Wang --- doc/guides/rel_notes/release_22_11.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/release_22_11.rst b/doc/guides/rel_notes/release_22_11.rst index 61f7d4d0a

RE: [EXT] [PATCH] doc: announce IPsec support on Arm

2022-11-07 Thread Akhil Goyal
> Updated release notes about the SNOW-3G and ZUC support on ARM platform. > > Signed-off-by: Ruifeng Wang > --- This was missed in the original patch. Can you add a Fixes tag for which this support was added?

RE: [EXT] [PATCH] doc: announce IPsec support on Arm

2022-11-07 Thread Ruifeng Wang
> -Original Message- > From: Akhil Goyal > Sent: Monday, November 7, 2022 4:26 PM > To: Ruifeng Wang ; roy.fan.zh...@intel.com; > tho...@monjalon.net; > david.march...@redhat.com > Cc: dev@dpdk.org; Honnappa Nagarahalli ; nd > > Subject: RE: [EXT] [PATCH] doc: announce IPsec support on

[PATCH v3] app/testpmd: fix protocol header display for Rx buffer split

2022-11-07 Thread Yuan Wang
The "show config rxhdrs" cmd displays the configured protocol headers that are used for protocol-based buffer split. However, it shows inner-ipv6 as inner-ipv4. This patch fixes that by adjusting the order of condition judgments. This patch also uses RTE_PTYPE_*_MASK as masks. Fixes: 52e2e7edcf48

[PATCH v2] doc: announce IPsec support on Arm

2022-11-07 Thread Ruifeng Wang
Updated release notes about the SNOW-3G and ZUC support on ARM platform. Fixes: 0899a87ce7c7 ("crypto/ipsec_mb: enable IPsec on Arm platform") Signed-off-by: Ruifeng Wang --- doc/guides/rel_notes/release_22_11.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/rele

RE: [PATCH v2 2/3] mempool: include non-DPDK threads in statistics

2022-11-07 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > Sent: Monday, 7 November 2022 08.27 > > On 2022-11-04 11:01, Morten Brørup wrote: > >> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > >> Sent: Friday, 4 November 2022 09.59 > >> > >> On 2022-11-03 09:59, Morten Brørup wrote: >

RE: [PATCH v3] app/testpmd: fix protocol header display for Rx buffer split

2022-11-07 Thread Tang, Yaqi
> -Original Message- > From: Wang, YuanX > Sent: Monday, November 7, 2022 4:45 PM > To: andrew.rybche...@oktetlabs.ru; Singh, Aman Deep > ; Zhang, Yuying > Cc: Ding, Xuan ; Tang, Yaqi ; > dev@dpdk.org; Wang, YuanX > Subject: [PATCH v3] app/testpmd: fix protocol header display for Rx bu

[PATCH v3] vdpa/ifc: fix update_datapath error handling

2022-11-07 Thread Taekyung Kim
Stop and return the error code when update_datapath fails. update_datapath prepares resources for the vdpa device. The driver should not perform any further actions if update_datapath returns an error. Fixes: a3f8150eac6d ("net/ifcvf: add ifcvf vDPA driver") Cc: sta...@dpdk.org Signed-off-by: Tae

[PATCH] net/ixgbe: fix error of drop queue index

2022-11-07 Thread kevin-intel
The drop queue index was not set when adding internal Flow Director Configuration copy in ixgbe device private data. Therefore dropped packets would be received by queue 0 which is set to drop queue. This commit sets drop queue index as IXGBE_FDIR_DROP_QUEUE to fix this issue. Fixes: 5007ac13189d

RE: [PATCH] power: fix double free of opened files

2022-11-07 Thread Pattan, Reshma
> -Original Message- > From: Kearney, Tadhg > Subject: [PATCH] power: fix double free of opened files > > Fix double free of f_min and f_max by reverting the flcose() for f_min and > f_max. As f_min and f_max are stored for further use and closed in uncore > deinitialization. > > Fix

Re: [RFC]: mempool: zero-copy cache get bulk

2022-11-07 Thread Bruce Richardson
On Sat, Nov 05, 2022 at 02:19:13PM +0100, Morten Brørup wrote: > Zero-copy access to the mempool cache is beneficial for PMD performance, and > must be provided by the mempool library to fix [Bug 1052] without a > performance regression. > > [Bug 1052]: https://bugs.dpdk.org/show_bug.cgi?id=1052

Re: [PATCH] usertools/hugepages: show usage if no action specified

2022-11-07 Thread Robin Jarry
Thomas Monjalon, Nov 04, 2022 at 12:30: > Previously, the script was doing nothing if no argument was provided. > > If neither show, mount/unmount, clear/reserve are specified, > it is assumed that the user does not know how to use the script. > So the usage is printed and an error code is used in

[PATCH 4/4] net/mlx5/hws: fix possible negative return on sq create

2022-11-07 Thread Alex Vesker
The sysconf call can return a negative value (-1) on failure this will lead to posix_memalign to fail. This is not a realistic case which was found by the static checkers. Coverity issue: 381674 Fixes: 3eb7488 ("net/mlx5/hws: add send layer") Signed-off-by: Alex Vesker Reviewed-by: Erez Shitrit

[PATCH] examples/fips_validation: fix typo

2022-11-07 Thread Pablo de Lara
Digest length is being printed out, not IV length. Fixes: ac026f4668d0 ("examples/fips_validation: support CMAC parsing") Fixes: f64adb6714e0 ("examples/fips_validation: support HMAC parsing") Cc: marko.kovace...@intel.com Cc: sta...@dpdk.org --- examples/fips_validation/main.c | 4 ++-- 1 file c

[PATCH] net/mlx5/hws: fix possible action setter segmenation fault

2022-11-07 Thread Alex Vesker
When the maximum action combination in RX is used we can get a segfault due to an incorrecrt max array size define. This bug can happen on RX/TX or FDB in the most complex cases. Current max was set to 7, but actual max is: Max TX: 8, Max RX: 10, Max FDB: 9 Fixes: f8c8a6d ("net/mlx5/hws: add actio

[PATCH v2] examples/fips_validation: fix typo

2022-11-07 Thread Pablo de Lara
Digest length is being printed out, not IV length. Fixes: ac026f4668d0 ("examples/fips_validation: support CMAC parsing") Fixes: f64adb6714e0 ("examples/fips_validation: support HMAC parsing") Cc: marko.kovace...@intel.com Cc: sta...@dpdk.org Signed-off-by: Pablo de Lara --- -v2: added missing "

[PATCH] net/mlx5/hws: fix possible negative return on sq create

2022-11-07 Thread Alex Vesker
The sysconf call can return a negative value (-1) on failure this will lead to posix_memalign to fail. This is not a realistic case which was found by the static checkers. Coverity issue: 381674 Fixes: 3eb7488 ("net/mlx5/hws: add send layer") Signed-off-by: Alex Vesker Reviewed-by: Erez Shitrit

[PATCH v2] net/mlx5/hws: fix possible action setter segmenation fault

2022-11-07 Thread Alex Vesker
When the maximum action combination in RX is used we can get a segfault due to an incorrecrt max array size define. This bug can happen on RX/TX or FDB in the most complex cases. Current max was set to 7, but actual max is: Max TX: 8, Max RX: 10, Max FDB: 9 Fixes: f8c8a6d ("net/mlx5/hws: add actio

[PATCH] net/mlx5: fix hairpin split with set VLAN VID action

2022-11-07 Thread Dariusz Sosnowski
Before this patch any flow rule which works on hairpin queues and which has OF_SET_VLAN_VID action was split into 2 flow rules: - one subflow for Rx, - one subflow for Tx. OF_SET_VLAN_VID action was always placed in the Tx subflow. Assuming a flow rule which matches VLAN traffic and has both OF_

[PATCH] common/qat: fix undefined initial slice

2022-11-07 Thread Arek Kusztal
This commit fixes undefined initial value of slice capability. When unset it could lead to undefined read of capability due to stack frame picked values, is should therefore be set to 0. Fixes: b3cbbcdffa4f ("common/qat: read HW slice configuration") Signed-off-by: Arek Kusztal --- drivers/comm

RE: [PATCH] common/qat: fix undefined initial slice

2022-11-07 Thread Ji, Kai
Acked-by: Kai Ji > -Original Message- > From: Kusztal, ArkadiuszX > Sent: Monday, November 7, 2022 9:24 AM > To: dev@dpdk.org > Cc: gak...@marvell.com; Ji, Kai ; Kusztal, ArkadiuszX > > Subject: [PATCH] common/qat: fix undefined initial slice > > This commit fixes undefined initial val

RE: [PATCH v2 0/3] app/testseventdev: crypto producer fixes

2022-11-07 Thread Anoob Joseph
> > This patch series address issues with crypto producer - correct setup > sequence and multi stage handling with time stamp attached. > > v2: > - Split fixes into individual patches > > Volodymyr Fialko (3): > app/testeventdev: setup crypto adapter before sessions > app/testeventdev: fix a

[PATCH v2] net/mlx5/hws: fix action creation check for HWS support

2022-11-07 Thread Alex Vesker
Fix segmentation fault when a user will request to allocate a HWS action while current device doesn't support HWS. Fixes: f8c8a6d ("net/mlx5/hws: add action object") Signed-off-by: Alex Vesker Reviewed-by: Erez Shitrit Acked-by: Matan Azrad --- drivers/net/mlx5/hws/mlx5dr_action.c | 7 +++

[PATCH v2] net/mlx5/hws: fix capability check to allow HWS on non esw-mngr

2022-11-07 Thread Alex Vesker
On context initialization the reparse capability support for NIC and FDB tables was required for allowing HWS. This caused a problem for devices that only want to run NIC steering and are not the esw-manager fow which FDB reparse is disabled. Modified the check to require FDB reparse only for esw-

Re: [PATCH v3] app/testpmd: fix protocol header display for Rx buffer split

2022-11-07 Thread Andrew Rybchenko
On 11/7/22 11:45, Yuan Wang wrote: The "show config rxhdrs" cmd displays the configured protocol headers that are used for protocol-based buffer split. However, it shows inner-ipv6 as inner-ipv4. This patch fixes that by adjusting the order of condition judgments. This patch also uses RTE_PTYPE_

Re: [PATCH v2] event/cnxk: fix incorrect mbuf offset calculation

2022-11-07 Thread Jerin Jacob
On Tue, Oct 25, 2022 at 9:41 PM wrote: > > From: Pavan Nikhilesh > > Fix incorrect mbuf offset calculation when HEADROOM exceeds 128B > while processing event vectors. > > Fixes: 7fbbc981d54f("event/cnxk: support vectorized Rx event fast path") Cc: sta...@dpdk.org Applied to dpdk-next-net-event

[PATCH] test/crypto: add 3DES IPsec test cases

2022-11-07 Thread Aakash Sasidharan
Add IPsec test cases for cipher algorithm 3DES. Signed-off-by: Aakash Sasidharan Reviewed-by: Anoob Joseph --- app/test/test_cryptodev.c | 32 1 file changed, 32 insertions(+) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 101a68f..e11

[PATCH] app/testpmd: fix flow list for async flows

2022-11-07 Thread Alexander Kozyrev
Flows created with the new asynchronous Flow API lack attributes (direction, priority, group number). These attributes are part of a template table for flows created via rte_flow_async_create(). When testpmd tries to list all the flows it accesses flow attributes via pointer and crashes. Save flow

Re: [PATCH] app/testeventdev: fix limit names in error message

2022-11-07 Thread Jerin Jacob
On Thu, Nov 3, 2022 at 9:02 PM Pavan Nikhilesh Bhagavatula wrote: > > > > > -Original Message- > > From: Volodymyr Fialko > > Sent: Monday, October 31, 2022 4:09 PM > > To: dev@dpdk.org > > Cc: Jerin Jacob Kollanukkaran ; Akhil Goyal > > ; Anoob Joseph ; Pavan > > Nikhilesh Bhagavatula ;

Re: [PATCH] event/dlb2: fix meson build

2022-11-07 Thread Jerin Jacob
On Fri, Nov 4, 2022 at 4:30 PM Jerin Jacob wrote: > > On Thu, Nov 3, 2022 at 9:52 PM Ferruh Yigit wrote: > > > > On 11/3/2022 3:35 PM, Thomas Monjalon wrote: > > > 03/11/2022 16:22, Ferruh Yigit: > > >> "meson setup" fails when '-Werror' compiler flag is enabled [1]. > > >> This is not a build er

RE: [RFC]: mempool: zero-copy cache get bulk

2022-11-07 Thread Morten Brørup
+ Akshitha, apparently working on similar patches > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Monday, 7 November 2022 10.19 > > On Sat, Nov 05, 2022 at 02:19:13PM +0100, Morten Brørup wrote: > > Zero-copy access to the mempool cache is beneficial for PMD > performance, an

RE: [PATCH v2] examples/fips_validation: fix typo

2022-11-07 Thread Dooley, Brian
Hi Pablo, > -Original Message- > From: De Lara Guarch, Pablo > Sent: Monday, November 7, 2022 10:04 AM > To: Dooley, Brian > Cc: dev@dpdk.org; De Lara Guarch, Pablo ; > Kovacevic, Marko ; sta...@dpdk.org > Subject: [PATCH v2] examples/fips_validation: fix typo > > Digest length is being

[PATCH] common/mlx5: use build configuration dictionary

2022-11-07 Thread Thomas Monjalon
A recent commit added an explicit dependency check on common/mlx5. For consistency, query dpdk_conf instead of the list of common drivers. The lists *_drivers should be used only for printing. Fixes: 3df380f61797 ("common/mlx5: fix disabling build") Suggested-by: Bruce Richardson Signed-off-by:

Re: [PATCH] common/mlx5: use build configuration dictionary

2022-11-07 Thread Bruce Richardson
On Mon, Nov 07, 2022 at 05:37:20PM +0100, Thomas Monjalon wrote: > A recent commit added an explicit dependency check on common/mlx5. > For consistency, query dpdk_conf instead of the list of common drivers. > The lists *_drivers should be used only for printing. > > Fixes: 3df380f61797 ("common/m

[PATCH] maintainers: update for pmdinfo tool

2022-11-07 Thread Thomas Monjalon
The original maintainer of pmdinfo/pmdinfogen did not send an email for 2 years. Signed-off-by: Thomas Monjalon --- MAINTAINERS | 1 - 1 file changed, 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 2ddb7cfa88..fa688516dd 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -136,7 +136,6 @@

[PATCH] maintainers: group service cores files

2022-11-07 Thread Thomas Monjalon
Move example with library files, all with the same maintainer. Signed-off-by: Thomas Monjalon --- MAINTAINERS | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 45582f37f0..f0d13f6572 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -233,6 +23

Re: [PATCH] event/cnxk: fix missing mempool cookie marking

2022-11-07 Thread Jerin Jacob
On Thu, Nov 3, 2022 at 9:46 PM wrote: > > From: Pavan Nikhilesh > > Mark chunks mempool objects as "put" as they are freed to NPA > automatically when they are parsed by TIM HW. > > Fixes: 300b796262a1 ("event/cnxk: add timer arm routine") > > Signed-off-by: Pavan Nikhilesh Applied to dpdk-next

Re: [PATCH v2 0/3] app/testseventdev: crypto producer fixes

2022-11-07 Thread Jerin Jacob
On Mon, Nov 7, 2022 at 4:31 PM Anoob Joseph wrote: > > > > > This patch series address issues with crypto producer - correct setup > > sequence and multi stage handling with time stamp attached. > > > > v2: > > - Split fixes into individual patches > > > > Volodymyr Fialko (3): > > app/testevent

Question about naive XOR hash in DPDK

2022-11-07 Thread Bili Dong
Dear DPDK devs, We are using DPDK as the backend target of a P4 pipeline ( https://github.com/p4lang/p4-dpdk-target). A recent issue we are trying to solve is to support a naive XOR hash (something like this

[RFC] mempool: add API to return pointer to free space on per-core cache

2022-11-07 Thread Kamalakshitha Aligeri
Expose the pointer to free space in per core cache in PMD, so that the objects can be directly copied to cache without any temporary storage Signed-off-by: Kamalakshitha Aligeri --- Pending Work: 1. Internal review needs to be done. 2. Make the changes in i40e_tx_free_bufs_avx512 app/test/test

[PATCH v1 1/1] baseband/acc100: fix to input error related to padding

2022-11-07 Thread Nicolas Chautru
Previous commit includes some padding for some cases, which may cause input warning from the HW which should be safely ignored to avoid false alarm. Fixes: 6f3325bbfa ("baseband/acc100: add LDPC encoder padding function") Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/rte_acc100_pmd.c

[PATCH v1 0/1] baseband/acc100: fix for RC2

2022-11-07 Thread Nicolas Chautru
Bug introduced in 22.11. The change to padding can lead to reporting input size mismatch which is not a problem and should not be considered as an error. Nicolas Chautru (1): baseband/acc100: fix to input error related to padding drivers/baseband/acc/rte_acc100_pmd.c | 3 --- 1 file changed, 3

RE: [PATCH v12 04/16] baseband/acc: introduce PMD for ACC200

2022-11-07 Thread Chautru, Nicolas
Hi Thomas, Reminder : do you mind kindly clarifying/confirming below. Then we can update the docs accordingly. Thanks. > -Original Message- > From: Chautru, Nicolas > Sent: Monday, October 31, 2022 2:41 PM > To: Thomas Monjalon > Cc: dev@dpdk.org; gak...@marvell.com; maxime.coque...@re

RE: [PATCH] net/ixgbe: fix error of drop queue index

2022-11-07 Thread Zhang, Qi Z
> -Original Message- > From: kevin-intel > Sent: Monday, November 7, 2022 4:49 PM > To: dev@dpdk.org > Cc: Zhou, YidingX ; Deng, KaiwenX > ; Yang, Qiming ; Wu, > Wenjun1 ; Andrew Rybchenko > ; Dongdong Liu > > Subject: [PATCH] net/ixgbe: fix error of drop queue index > > The drop queu

RE: [PATCH v3] vdpa/ifc: fix update_datapath error handling

2022-11-07 Thread Xia, Chenbo
> -Original Message- > From: Taekyung Kim > Sent: Monday, November 7, 2022 5:00 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; maxime.coque...@redhat.com; Xia, Chenbo > ; Wang, Xiao W ; > kim.tae.ky...@navercorp.com > Subject: [PATCH v3] vdpa/ifc: fix update_datapath error handling > > Stop

[PATCH v5 2/2] net/ice: fix vlan offload of rxq

2022-11-07 Thread Mingjin Ye
After setting "vlan offload" in pmd, the configuration of rxq is not updated. This patch is to sync the rxmode offload config with rxq. Fixes: e0dcf94a0d7f ("net/ice: support VLAN ops") Cc: sta...@dpdk.org Signed-off-by: Mingjin Ye --- drivers/net/ice/ice_dcf_ethdev.c | 15 +++ dri

[PATCH v5 1/2] net/ice: fix vlan offload

2022-11-07 Thread Mingjin Ye
The vlan tag and flag in Rx descriptor are not processed on vector path, then the upper application cann't fetch the tci from mbuf. This patch is to add handling of vlan RX offloading. Fixes: c68a52b8b38c ("net/ice: support vector SSE in Rx") Fixes: ece1f8a8f1c8 ("net/ice: switch to flexible desc

回复: [PATCH v2 3/3] examples/l3fwd-power: enable PMD power monitor on Arm

2022-11-07 Thread Feifei Wang
Hi, Stephen > -邮件原件- > 发件人: Stephen Hemminger > 发送时间: Tuesday, November 8, 2022 12:02 AM > 收件人: Feifei Wang > 抄送: David Hunt ; dev@dpdk.org; > david.march...@redhat.com; tho...@monjalon.net; nd ; > Ruifeng Wang > 主题: Re: [PATCH v2 3/3] examples/l3fwd-power: enable PMD power > monitor on

[PATCH v5 1/2] net/ice: fix vlan offload

2022-11-07 Thread Mingjin Ye
The vlan tag and flag in Rx descriptor are not processed on vector path, then the upper application can't fetch the tci from mbuf. This patch is to add handling of vlan RX offloading. Fixes: c68a52b8b38c ("net/ice: support vector SSE in Rx") Fixes: ece1f8a8f1c8 ("net/ice: switch to flexible descr

[PATCH v5 2/2] net/ice: fix vlan offload of rxq

2022-11-07 Thread Mingjin Ye
After setting "vlan offload" in pmd, the configuration of rxq is not updated. This patch is to sync the rxmode offload config with rxq. Fixes: e0dcf94a0d7f ("net/ice: support VLAN ops") Cc: sta...@dpdk.org Signed-off-by: Mingjin Ye --- drivers/net/ice/ice_dcf_ethdev.c | 15 +++ dri

RE: [PATCH] common/qat: fix undefined initial slice

2022-11-07 Thread Akhil Goyal
> Acked-by: Kai Ji > You should reply in the bottom. > > Subject: [PATCH] common/qat: fix undefined initial slice > > > > This commit fixes undefined initial value of slice capability. > > When unset it could lead to undefined read of capability due to stack frame > > picked values, is should th

RE: [PATCH v2] examples/fips_validation: fix typo

2022-11-07 Thread Akhil Goyal
> > Subject: [PATCH v2] examples/fips_validation: fix typo > > > > Digest length is being printed out, not IV length. > > > > Fixes: ac026f4668d0 ("examples/fips_validation: support CMAC parsing") > > Fixes: f64adb6714e0 ("examples/fips_validation: support HMAC parsing") > > Cc: marko.kovace...@int

RE: [PATCH] test/crypto: add 3DES IPsec test cases

2022-11-07 Thread Akhil Goyal
> Subject: [PATCH] test/crypto: add 3DES IPsec test cases > > Add IPsec test cases for cipher algorithm 3DES. > > Signed-off-by: Aakash Sasidharan > Reviewed-by: Anoob Joseph Applied to dpdk-next-crypto

RE: [EXT] [PATCH v2] doc: announce IPsec support on Arm

2022-11-07 Thread Akhil Goyal
> Subject: [EXT] [PATCH v2] doc: announce IPsec support on Arm > Updated release notes about the SNOW-3G and ZUC support on ARM platform. > > Fixes: 0899a87ce7c7 ("crypto/ipsec_mb: enable IPsec on Arm platform") > > Signed-off-by: Ruifeng Wang Applied to dpdk-next-crypto Thanks.

[PATCH v5 1/2] net/ice: fix vlan offload

2022-11-07 Thread Mingjin Ye
The vlan tag and flag in Rx descriptor are not processed on vector path, then the upper application can't fetch the tci from mbuf. This patch is to add handling of vlan RX offloading. Fixes: c68a52b8b38c ("net/ice: support vector SSE in Rx") Fixes: ece1f8a8f1c8 ("net/ice: switch to flexible descr

[PATCH v5 2/2] net/ice: fix vlan offload of rxq

2022-11-07 Thread Mingjin Ye
After setting "vlan offload" in pmd, the configuration of rxq is not updated. This patch is to sync the rxmode offload config with rxq. Fixes: e0dcf94a0d7f ("net/ice: support VLAN ops") Cc: sta...@dpdk.org Signed-off-by: Mingjin Ye --- drivers/net/ice/ice_dcf_ethdev.c | 15 +++ dri

RE: [EXT] [PATCH v1 1/1] baseband/acc100: fix to input error related to padding

2022-11-07 Thread Akhil Goyal
> Previous commit includes some padding for some cases, > which may cause input warning from the HW > which should be safely ignored to avoid false alarm. > > Fixes: 6f3325bbfa ("baseband/acc100: add LDPC encoder padding function") > > Signed-off-by: Nicolas Chautru Applied to dpdk-next-crypto.

[PATCH v1] mempool/cnxk: destroy NPA pool only if its created

2022-11-07 Thread Ashwin Sekhar T K
In scenarios where rte_mempool_free() is called immediately after rte_mempool_create_empty(), the NPA pool will not be created. In such cases the free path should not call roc_npa_pool_destroy(). Signed-off-by: Ashwin Sekhar T K --- drivers/mempool/cnxk/cnxk_mempool_ops.c | 8 1 file ch

RE: [PATCH] net/ice/base: fix duplicate flow rules

2022-11-07 Thread Zhou, YidingX
Hi, Qi This patch has been merged to kernel driver. Should it be merged to dpdk now? > -Original Message- > From: Zhou, YidingX > Sent: Thursday, October 13, 2022 2:21 PM > To: dev@dpdk.org > Cc: Zhou, YidingX ; sta...@dpdk.org > Subject: [PATCH] net/ice/base: fix duplicate flow rules

[PATCH v2] mempool/cnxk: destroy NPA pool only if its created

2022-11-07 Thread Ashwin Sekhar T K
In scenarios where rte_mempool_free() is called immediately after rte_mempool_create_empty(), the NPA pool will not be created. In such cases the free path should not call roc_npa_pool_destroy(). Signed-off-by: Ashwin Sekhar T K --- drivers/mempool/cnxk/cnxk_mempool_ops.c | 8 1 file ch

[PATCH v3] mempool/cnxk: fix mempool destroy for empty pools

2022-11-07 Thread Ashwin Sekhar T K
In scenarios where rte_mempool_free() is called immediately after rte_mempool_create_empty(), the NPA pool will not be created. In such cases the free path should not call roc_npa_pool_destroy(). Fixes: bbf19e89b87c ("mempool/cnxk: add generic operations") Signed-off-by: Ashwin Sekhar T K --- d

RE: [PATCH v3] vdpa/ifc: fix update_datapath error handling

2022-11-07 Thread Pei, Andy
Hi See my reply inline. > -Original Message- > From: Xia, Chenbo > Sent: Tuesday, November 8, 2022 9:47 AM > To: Taekyung Kim ; dev@dpdk.org > Cc: sta...@dpdk.org; maxime.coque...@redhat.com; Wang, Xiao W > > Subject: RE: [PATCH v3] vdpa/ifc: fix update_datapath error handling > > > -

Re: [PATCH] common/mlx5: use build configuration dictionary

2022-11-07 Thread David Marchand
On Mon, Nov 7, 2022 at 5:37 PM Thomas Monjalon wrote: > > A recent commit added an explicit dependency check on common/mlx5. > For consistency, query dpdk_conf instead of the list of common drivers. > The lists *_drivers should be used only for printing. > > Fixes: 3df380f61797 ("common/mlx5: fix

Re: [PATCH v3] vdpa/ifc: fix update_datapath error handling

2022-11-07 Thread Taekyung Kim
Hi Chenbo, Thanks for your review. On Tue, Nov 08, 2022 at 01:46:37AM +, Xia, Chenbo wrote: > > -Original Message- > > From: Taekyung Kim > > Sent: Monday, November 7, 2022 5:00 PM > > To: dev@dpdk.org > > Cc: sta...@dpdk.org; maxime.coque...@redhat.com; Xia, Chenbo > > ; Wang, Xiao

RE: [PATCH v3] vdpa/ifc: fix update_datapath error handling

2022-11-07 Thread Xia, Chenbo
> -Original Message- > From: Pei, Andy > Sent: Tuesday, November 8, 2022 3:39 PM > To: Xia, Chenbo ; Taekyung Kim > ; dev@dpdk.org > Cc: sta...@dpdk.org; maxime.coque...@redhat.com; Wang, Xiao W > > Subject: RE: [PATCH v3] vdpa/ifc: fix update_datapath error handling > > Hi > > See my r