[PATCH v2] bus/fslmc: unlock spinlock in case of timeout

2022-12-25 Thread Alvaro Karsz
Bug in function mc_send_command, A spinlock is not unlocked in case of timeouts. Fixes: 79711846f676 ("bus/fslmc: add timeout in MC send command") Signed-off-by: Alvaro Karsz -- v2: - Fix code indentation. - Fix "Fixes: " tag format. --- drivers/bus/fslmc/mc/mc_sys.c | 6 +-

[PATCH] examples/vdpa: fix devices cleanup

2022-12-25 Thread Yajun Wu
Move rte_eal_cleanup to function vdpa_sample_quit which handling all example app quit. Otherwise rte_eal_cleanup won't be called on receiving signal like SIGINT(control + c). Fixes: 10aa3757 ("examples: add eal cleanup to examples") Cc: sta...@dpdk.org Signed-off-by: Yajun Wu Acked-by: Matan Azr

RE: [PATCH v2] net/ice: add devargs for disabling mac filter

2022-12-25 Thread Zhang, Qi Z
> -Original Message- > From: Zhang, Ke1X > Sent: Wednesday, December 21, 2022 11:58 AM > To: Zhang, Qi Z ; Zhang, Yuying > ; dev@dpdk.org > Cc: Zhang, Ke1X > Subject: [PATCH v2] net/ice: add devargs for disabling mac filter > > From: "ke1x.zhang" > > This patch adds support to disab

RE: [PATCH v2] net/iavf: add lock for vf commands

2022-12-25 Thread Zhang, Qi Z
> -Original Message- > From: Mike Pattrick > Sent: Tuesday, December 20, 2022 11:54 PM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; tho...@monjalon.net; > david.march...@redhat.com; Zhou, YidingX ; > ktray...@redhat.com; Mike Pattrick ; sta...@dpdk.org > Subject: [PATCH v2] net/iavf: add lock

RE: [PATCH] net/i40e: reduce the ITR interval of multi-driver mode

2022-12-25 Thread Zhang, Qi Z
> -Original Message- > From: Qiming Yang > Sent: Friday, December 16, 2022 11:12 AM > To: dev@dpdk.org; Xing, Beilei > Cc: Yang, Qiming > Subject: [PATCH] net/i40e: reduce the ITR interval of multi-driver mode > > This patch change the interrupt interval from 8160us to 32us to improv

Re: [PATCH v5 0/5] support dmadev/ethdev stats reset

2022-12-25 Thread fengchengwen
Sorry for the patchset version set wrong, it should be 'PATCH v1' not 'PATCH v5' Will fix in V2 On 2022/12/19 17:07, Chengwen Feng wrote: > This patchset contains dmadev/ethdev stats reset, and also support > hide zero for ethdev xstats. > > Chengwen Feng (5): > dmadev: support stats reset tel

Re: [PATCH v5 2/5] telemetry: fix repeated display when callback don't set dict

2022-12-25 Thread fengchengwen
On 2022/12/19 17:33, Bruce Richardson wrote: > On Mon, Dec 19, 2022 at 09:07:20AM +, Chengwen Feng wrote: >> When telemetry callback didn't set dict and return a non-negative >> number, the telemetry will repeat to display the last result. >> >> Fixes: 6dd571fd07c3 ("telemetry: introduce new fu

[PATCH v7] doc: add PMD known issue

2022-12-25 Thread Mingjin Ye
Add a known issue: Rx path dynamic routing is not supported for PMD. Fixes: de853a3bb151 ("net/ice: disable DDP package on Windows") Cc: sta...@dpdk.org Signed-off-by: Mingjin Ye --- doc/guides/nics/ice.rst | 23 +++ 1 file changed, 23 insertions(+) diff --git a/doc/guides/

RE: [PATCH v2] net/iavf: fix outer udp checksum offload

2022-12-25 Thread Zhang, Qi Z
> -Original Message- > From: Xu, Ke1 > Sent: Wednesday, December 14, 2022 9:51 AM > To: Zeng, ZhichaoX ; dev@dpdk.org > Cc: Zhou, YidingX ; Zhang, Qi Z > ; Wu, Jingjing ; Xing, Beilei > ; Nicolau, Radu > Subject: RE: [PATCH v2] net/iavf: fix outer udp checksum offload > > > > >

RE: [PATCH] net/iavf:fix slow memory allocation

2022-12-25 Thread Zhang, Qi Z
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, December 22, 2022 8:07 PM > To: You, KaisenX ; dev@dpdk.org; Burakov, Anatoly > ; David Marchand > > Cc: sta...@dpdk.org; Yang, Qiming ; Zhou, YidingX > ; Wu, Jingjing ; Xing, Beilei > ; Zhang, Qi Z ; Luca Boccassi > ; Mcnamara

RE: [PATCH v1 0/2] fix unsupported flow rule transfer attribute

2022-12-25 Thread Yang, Qiming
Hi, > -Original Message- > From: Yang, SteveX > Sent: Monday, December 26, 2022 8:37 AM > To: dev@dpdk.org > Cc: Zhang, Yuying ; Xing, Beilei > ; Yang, Qiming ; Zhang, Qi Z > ; Yang, SteveX > Subject: [PATCH v1 0/2] fix unsupported flow rule transfer attribute > > ice & i40e doesn't sup

[PATCH v1 2/2] net/ice: fix unsupported flow rule transfer attribute

2022-12-25 Thread Steve Yang
ice doesn't support transfer attribute of flow rule, ignore it when validating rule attributes. Fixes: d76116a4678f ("net/ice: add generic flow API") Signed-off-by: Steve Yang --- drivers/net/ice/ice_generic_flow.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/net/ice/ice_

[PATCH v1 1/2] net/i40e: fix unsupported flow rule transfer attribute

2022-12-25 Thread Steve Yang
i40e doesn't support transfer attribute of flow rule, ignore it when validating rule attributes. Fixes: 86eb05d6350b ("net/i40e: add flow validate function") Signed-off-by: Steve Yang --- drivers/net/i40e/i40e_flow.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/net/i40e/i

[PATCH v1 0/2] fix unsupported flow rule transfer attribute

2022-12-25 Thread Steve Yang
ice & i40e doesn't support transfer attribute of flow rule, ignore it when validating rule attributes. Steve Yang (2): net/i40e: fix unsupported flow rule transfer attribute net/ice: fix unsupported flow rule transfer attribute drivers/net/i40e/i40e_flow.c | 8 drivers/net/ice

Re: [PATCH] bus/fslmc: unlock spinlock in case of timeout

2022-12-25 Thread Alvaro Karsz
Sorry guys, I got test-report errors. The commit id format is wrong and it seems that I have an indentation error. I will fix it and submit a new version.

[PATCH] bus/fslmc: unlock spinlock in case of timeout

2022-12-25 Thread Alvaro Karsz
Commit 79711846f6 introduces timeouts to mc, but in case of a timeout, the spinlock that was locked before isn't unlocked. Fixes: 79711846f6 ("bus/fslmc: add timeout in MC send command API") Signed-off-by: Alvaro Karsz --- drivers/bus/fslmc/mc/mc_sys.c | 6 +- 1 file changed, 5 insertions(+)