> -Original Message-
> From: Qiao, Wenjing
> Sent: Wednesday, September 6, 2023 5:34 PM
> To: Zhang, Yuying ; dev@dpdk.org; Zhang, Qi Z
> ; Wu, Jingjing ; Xing, Beilei
>
> Cc: Liu, Mingxia
> Subject: [PATCH v3 6/9] net/cpfl: add fxp rule module
>
> From: Yuying Zhang
>
> Added low
If the user calls rte_vhost_vring_call() on a ring that has been
invalidated, we will encounter SEGV.
We should check the pointer firstly before accessing it.
Signed-off-by: Li Feng
---
v2 -> v3:
- Also fix the rte_vhost_vring_call_nonblock.
v1 -> v2:
- Fix rebase error.
lib/vhost/vhost.c |
From: Beilei Xing
1. code refine for representor support
2. support port representor
v5 changes:
- refine cpfl_vport_info structure
- refine cpfl_repr_link_update function
- refine cpfl_repr_create function
v4 changes:
- change the patch order
- merge two patches
- revert enum change
v3 ch
From: Beilei Xing
1. Keep devargs in adapter.
2. Refine handling the case with no vport be specified in devargs.
3. Separate devargs parse and devargs process
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 154 ++---
drivers
From: Beilei Xing
Introduce cplf interface structure to distinguish vport and port
representor.
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 3 +++
drivers/net/cpfl/cpfl_ethdev.h | 15 +++
2 files changed, 18 insertions(+)
diff --git a/
From: Beilei Xing
Refine handle virtual channel event message.
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 48 +-
1 file changed, 24 insertions(+), 24 deletions(-)
diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/driver
From: Beilei Xing
The CPCHNL2 defines the API (v2) used for communication between the
CPF driver and its on-chip management software. The CPFL PMD is a
specific CPF driver to utilize CPCHNL2 for device configuration and
event probing.
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_cpchnl
From: Beilei Xing
1. Handle cpchnl event for vport create/destroy
2. Use hash table to store vport_id to vport_info mapping
3. Use spinlock for thread safe.
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 157 +
drivers/n
From: Beilei Xing
Support cp channel ops CPCHNL2_OP_CPF_GET_VPORT_LIST and
CPCHNL2_OP_CPF_GET_VPORT_INFO.
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.h | 8
drivers/net/cpfl/cpfl_vchnl.c | 72 ++
drivers/net/cpfl/meson.build | 1 +
3 fi
From: Beilei Xing
Only representor will be parsed for probe again.
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 69 +++---
1 file changed, 56 insertions(+), 13 deletions(-)
diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/dr
From: Beilei Xing
Format:
[[c]pf]vf
controller_id:
0 : host (default)
1: acc
pf_id:
0 : apf (default)
1 : cpf
Example:
representor=c0pf0vf[0-3]
-- host > apf > vf 0,1,2,3
same as pf0vf[0-3] and vf[0-3] if omit default value.
representor=c0pf0
-- host > apf
same
From: Beilei Xing
Track representor request in the allowlist.
Representor will only be created for active vport.
Signed-off-by: Jingjing Wu
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 117 +++---
drivers/net/cpfl/cpfl_ethdev.h | 39 +-
d
From: Beilei Xing
Add link update ops for representor.
Signed-off-by: Jingjing Wu
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.h | 1 +
drivers/net/cpfl/cpfl_representor.c | 89 +++--
2 files changed, 71 insertions(+), 19 deletions(-)
diff --git a
On Mon, 11 Sep 2023 18:55:45 +0200
Morten Brørup wrote:
>
> > From: Michael Baum [mailto:michae...@nvidia.com]
> > Sent: Monday, 11 September 2023 08.42
> >
> > Add support for matching random value using new "rte_flow_item_random"
> > structure.
>
> I get it. It can be used for things like st
Let's look at this path:
malloc_elem_free
->malloc_elem_join_adjacent_free
->join_elem(elem, elem->next)
0. cur elem's pad > 0
1. data area memset in malloc_elem_free first.
2. next elem is free, try to join cur elem and next.
3. in join_elem, try to modify inner->size, this address had
m
> -Original Message-
> From: Mingjin Ye
> Sent: Friday, September 1, 2023 3:24 PM
> To: dev@dpdk.org
> Cc: Yang, Qiming ; Zhou, YidingX
> ; Ye, MingjinX ;
> sta...@dpdk.org; Burakov, Anatoly
> Subject: [PATCH] bus/vdev: fix devargs memory leak
>
> When a device is created by a secondary
From: Beilei Xing
1. Keep devargs in adapter.
2. Refine handling the case with no vport be specified in devargs.
3. Separate devargs parse and devargs process
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 154 ++---
drivers
From: Beilei Xing
1. code refine for representor support
2. support port representor
v6 changes:
- move some change from 08/10 to 06/10 patch
v5 changes:
- refine cpfl_vport_info structure
- refine cpfl_repr_link_update function
- refine cpfl_repr_create function
v4 changes:
- change the pa
From: Beilei Xing
Introduce cplf interface structure to distinguish vport and port
representor.
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 3 +++
drivers/net/cpfl/cpfl_ethdev.h | 15 +++
2 files changed, 18 insertions(+)
diff --git a/
From: Beilei Xing
Refine handle virtual channel event message.
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 48 +-
1 file changed, 24 insertions(+), 24 deletions(-)
diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/driver
From: Beilei Xing
1. Handle cpchnl event for vport create/destroy
2. Use hash table to store vport_id to vport_info mapping
3. Use spinlock for thread safe.
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 157 +
drivers/n
From: Beilei Xing
The CPCHNL2 defines the API (v2) used for communication between the
CPF driver and its on-chip management software. The CPFL PMD is a
specific CPF driver to utilize CPCHNL2 for device configuration and
event probing.
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_cpchnl
From: Beilei Xing
Support cp channel ops CPCHNL2_OP_CPF_GET_VPORT_LIST and
CPCHNL2_OP_CPF_GET_VPORT_INFO.
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.h | 8
drivers/net/cpfl/cpfl_vchnl.c | 72 ++
drivers/net/cpfl/meson.build | 1 +
3 fi
From: Beilei Xing
Only representor will be parsed for probe again.
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 69 +++---
1 file changed, 56 insertions(+), 13 deletions(-)
diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/dr
From: Beilei Xing
Format:
[[c]pf]vf
controller_id:
0 : host (default)
1: acc
pf_id:
0 : apf (default)
1 : cpf
Example:
representor=c0pf0vf[0-3]
-- host > apf > vf 0,1,2,3
same as pf0vf[0-3] and vf[0-3] if omit default value.
representor=c0pf0
-- host > apf
same
From: Beilei Xing
Track representor request in the allowlist.
Representor will only be created for active vport.
Signed-off-by: Jingjing Wu
Signed-off-by: Qi Zhang
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.c | 109 +++---
drivers/net/cpfl/cpfl_ethdev.h | 37 ++
d
From: Beilei Xing
Add link update ops for representor.
Signed-off-by: Jingjing Wu
Signed-off-by: Beilei Xing
---
drivers/net/cpfl/cpfl_ethdev.h | 1 +
drivers/net/cpfl/cpfl_representor.c | 89 +++--
2 files changed, 71 insertions(+), 19 deletions(-)
diff --git a
This problem had fix in this patch
http://patches.dpdk.org/project/dpdk/patch/20230912090415.48709-1-changfeng...@bytedance.com/
I'm doing long-term test, especially rte_zmalloc.
Fengnan Chang 于2023年9月12日周二 10:44写道:
>
> This patch still have problem, I'll fix next version.
>
> Stephen Hemminger
Description for rte_cryptodev_get_sec_ctx is missing. Add the same.
Fixes: eadb4fa1e1fe ("cryptodev: support security APIs")
Signed-off-by: Anoob Joseph
---
lib/cryptodev/rte_cryptodev.h | 9 +
1 file changed, 9 insertions(+)
diff --git a/lib/cryptodev/rte_cryptodev.h b/lib/cryptodev/r
On Mon, 13 Jun 2022 23:56:43 +0800
835703...@qq.com wrote:
> From: newsky647 <835703...@qq.com>
>
> expr "if ([expr] == true)" can be simplified to "if ([expr])".
> Therefore, simplify it, no functional change.
>
> Fixes: 450f0791312 ("lib/power: power: add traffic pattern aware
> power control
Hi Dmitry,
Thanks for the review, I'll send the next version patch.
Please see my comments below.
> -Original Message-
> From: Dmitry Kozlyuk
> Sent: Tuesday, September 12, 2023 5:51 AM
> To: Li, Ming3
> Cc: dev@dpdk.org; Tyler Retzlaff
> Subject: Re: [PATCH v2] windows/virt2phys: fi
The virt2phys_translate function previously scanned existing blocks,
returning the physical address from the stored MDL info if present.
This method was problematic when a virtual address pointed to a freed
and reallocated memory segment, potentially changing the physical
address mapping. Yet, virt
Caught while running meson test:
hash creation failedTest Failed
Add missing \n.
Fixes: 0eb3726ebcf ("test/hash: add test for read/write concurrency")
Signed-off-by: Min Zhou
---
app/test/test_hash_readwrite.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/test/test_ha
2023-09-12 11:13 (UTC+), Li, Ming3:
> > Is any if these bugs are related?
> > If so, please mention "Bugzilla ID: " in the commit message.
> >
> > https://bugs.dpdk.org/show_bug.cgi?id=1201
> > https://bugs.dpdk.org/show_bug.cgi?id=1213
> >
>
> Sure, will do.
>
> I cannot reproduce th
> From: Stephen Hemminger
> Sent: Saturday, September 9, 2023 10:52 PM
> > diff --git a/drivers/net/mana/mana.c b/drivers/net/mana/mana.c index
> > 7630118d4f..a20ca1a988 100644
> > --- a/drivers/net/mana/mana.c
> > +++ b/drivers/net/mana/mana.c
> > @@ -1260,7 +1260,7 @@ mana_probe_port(struct ibv
On Fri, 2 Sep 2022 10:45:31 +0200
Felix Moessbauer wrote:
> app/l2reflect/colors.c| 34 ++
> app/l2reflect/colors.h| 19 +
> app/l2reflect/l2reflect.h | 53 ++
> app/l2reflect/main.c | 1007
> + app/l2reflect/meson.build |
> 21 + app/l2refle
For the script sharks...
RTE_LIBRTE_xxx seems redundant. There are still a bunch of those in DPDK, which
could be replaced by RTE_xxx.
Cleaning up this will probably break the API.
On Tue, Sep 12, 2023 at 5:46 PM Morten Brørup
wrote:
> RTE_LIBRTE_xxx seems redundant. There are still a bunch of those in DPDK,
> which could be replaced by RTE_xxx.
>
> Cleaning up this will probably break the API.
If we exclude config/ doc/ and any rte_.*.h header, we should be good?
$ for
On 9/1/23 7:59 AM, Bruce Richardson wrote:
+PPC maintainer
On Thu, Aug 31, 2023 at 01:10:56PM +0100, Bruce Richardson wrote:
When building on Ubuntu using the packaged powerpc compiler[1], a
warning is issued about the print format of the __u64 values.
../../lib/vhost/vduse.c: In function ‘
getenv needs stdlib.h to be included.
Bugzilla ID: 1133
Fixes: 24c77594e08f ("gpu/cuda: map GPU memory with GDRCopy")
Signed-off-by: John Romein
---
drivers/gpu/cuda/gdrcopy.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/cuda/gdrcopy.c b/drivers/gpu/cuda/gdrcopy.c
index 32
Hi Hemant,
Your previous ack was under the [PATCH v2 0/5] email.
Could you please place your ack for the patch under this email?
Thanks,
Hernan
Acked-by: Hernan Vargas
> -Original Message-
> From: Hemant Agrawal
> Sent: Wednesday, September 6, 2023 1:17 AM
> To: Chautru, Nicolas ; dev
> From: David Marchand [mailto:david.march...@redhat.com]
> Sent: Tuesday, 12 September 2023 18.50
>
> On Tue, Sep 12, 2023 at 5:46 PM Morten Brørup
> wrote:
> > RTE_LIBRTE_xxx seems redundant. There are still a bunch of those in
> DPDK, which could be replaced by RTE_xxx.
> >
> > Cleaning up thi
> -Original Message-
> From: Xing, Beilei
> Sent: Wednesday, September 13, 2023 1:30 AM
> To: Wu, Jingjing
> Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei
>
> Subject: [PATCH v6 00/10] net/cpfl: support port representor
>
> From: Beilei Xing
Acked-by: Jingjing Wu
> -Original Message-
> From: Wu, Jingjing
> Sent: Wednesday, September 13, 2023 9:01 AM
> To: Xing, Beilei
> Cc: dev@dpdk.org; Liu, Mingxia
> Subject: RE: [PATCH v6 00/10] net/cpfl: support port representor
>
>
>
> > -Original Message-
> > From: Xing, Beilei
> > Sent: Wedn
> -Original Message-
> From: Radu Nicolau
> Sent: Monday, September 11, 2023 5:21 PM
> To: Wu, Jingjing ; Xing, Beilei
> Cc: dev@dpdk.org; Nicolau, Radu ;
> sta...@dpdk.org
> Subject: [PATCH] net/iavf: fix ESN session update
>
> Update both high and low section of the ESN.
>
> Fixes:
> -Original Message-
> From: Su, Simei
> Sent: Friday, September 8, 2023 6:28 PM
> To: Wu, Jingjing ; Xing, Beilei
> ;
> Zhang, Qi Z
> Cc: dev@dpdk.org; Wu, Wenjun1 ; Su, Simei
>
> Subject: [PATCH v3] common/idpf: refactor single queue Tx function
>
> This patch replaces flex Tx des
> -Original Message-
> From: Su, Simei
> Sent: Friday, September 8, 2023 6:28 PM
> To: Wu, Jingjing ; Xing, Beilei
> ;
> Zhang, Qi Z
> Cc: dev@dpdk.org; Wu, Wenjun1 ; Su, Simei
>
> Subject: [PATCH v3] common/idpf: refactor single queue Tx function
>
> This patch replaces flex Tx des
47 matches
Mail list logo