Re: [PATCH v9 0/9] add rte flow support for cpfl

2023-10-15 Thread Thomas Monjalon
28/09/2023 10:44, yuying.zh...@intel.com: > From: Yuying Zhang > > This patchset add rte flow support for cpfl driver. > It depends on the following patch set: > http://patchwork.dpdk.org/project/dpdk/cover/20230912173039.1612287-1-beilei.x...@intel.com/ > > Wenjing Qiao (2): > net/cpfl: add j

Re: [PATCH v9 3/9] net/cpfl: set up rte flow skeleton

2023-10-15 Thread Thomas Monjalon
28/09/2023 10:44, yuying.zh...@intel.com: > --- /dev/null > +++ b/drivers/net/cpfl/cpfl_flow.h > @@ -0,0 +1,85 @@ > +/* SPDX-Lidpfnse-Identifier: BSD-3-Clause Are you sure? This typo has been caught by devtools/check-spdx-tag.sh Please run the scripts in devtools.

Re:Re: [PATCH v2 0/3] example/l3fwd: relax l3fwd rx RSS/Offload if needed

2023-10-15 Thread taozj888
Hi David: Thanks for your notifications. I will check them in the future work. Trevor Tao At 2023-10-13 15:07:03, "David Marchand" wrote: >Hello, > >On Fri, Oct 13, 2023 at 6:28 AM Trevor Tao wrote: >> >> This series tries to relax l3fwd rx RSS/Offload mode requirement if they >> are

[PATCH] eal: use abstracted bit count functions

2023-10-15 Thread Tyler Retzlaff
Use DPDK abstracted bitcount functions in rte_bsf and rte_fls inline functions. Signed-off-by: Tyler Retzlaff --- lib/eal/include/rte_bitops.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/eal/include/rte_bitops.h b/lib/eal/include/rte_bitops.h index d45aa54..6b

[Bug 1300] iavf: when ovs using tso,setting RTE_MBUF_F_TX_TCP_SEG and RTE_MBUF_F_TX_TCP_CKSUM meantime result in tso fail

2023-10-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1300 Bug ID: 1300 Summary: iavf: when ovs using tso,setting RTE_MBUF_F_TX_TCP_SEG and RTE_MBUF_F_TX_TCP_CKSUM meantime result in tso fail Product: DPDK Version: 22.11

[PATCH v2] eal: use abstracted bit count functions

2023-10-15 Thread Tyler Retzlaff
Use DPDK abstracted bitcount functions instead of gcc __builtin_'s Signed-off-by: Tyler Retzlaff --- lib/eal/common/malloc_elem.c | 2 +- lib/eal/common/rte_service.c | 4 ++-- lib/eal/include/rte_bitops.h | 8 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/eal/commo

RE: [PATCH v9 3/9] net/cpfl: set up rte flow skeleton

2023-10-15 Thread Zhang, Qi Z
> -Original Message- > From: Thomas Monjalon > Sent: Sunday, October 15, 2023 9:02 PM > To: Zhang, Qi Z > Cc: Zhang, Yuying ; dev@dpdk.org; Wu, Jingjing > ; Xing, Beilei ; Zhang, Yuying > ; david.march...@redhat.com > Subject: Re: [PATCH v9 3/9] net/cpfl: set up rte flow skeleton > >

RE: [PATCH] net/cpfl: reset devargs during the first probe

2023-10-15 Thread Zhang, Qi Z
> -Original Message- > From: Xing, Beilei > Sent: Thursday, October 12, 2023 3:42 PM > To: Wu, Jingjing > Cc: dev@dpdk.org > Subject: RE: [PATCH] net/cpfl: reset devargs during the first probe > > > > > -Original Message- > > From: Wu, Jingjing > > Sent: Thursday, October 1

RE: [PATCH] config/x86: config support for AMD EPYC processors

2023-10-15 Thread Tummala, Sivaprasad
[AMD Official Use Only - General] > -Original Message- > From: David Marchand > Sent: Friday, October 6, 2023 1:21 PM > To: Tummala, Sivaprasad > Cc: bruce.richard...@intel.com; konstantin.v.anan...@yandex.ru; dev@dpdk.org; > dpdk-techboard ; Thomas Monjalon > > Subject: Re: [PATCH] con

RE: [PATCH] config/x86: config support for AMD EPYC processors

2023-10-15 Thread Tummala, Sivaprasad
[AMD Official Use Only - General] Hi DPDK Techboard, Request to add this topic for discussion in the next techboard meeting. Thanks & Regards, Sivaprasad > -Original Message- > From: Tummala, Sivaprasad > Sent: Monday, October 16, 2023 10:44 AM > To: David Marchand > Cc: bruce.richard

[PATCH] net/cnxk: fix separate callback for Rx flush on CN10k

2023-10-15 Thread Rahul Bhansali
In case of dev stop, Rx packet flush will be called which uses LMT lines to bulk free of the pending meta buffers. And LMT line is not valid for non EAL cores. As a fix, a separate callback for Rx packets flush is added, which will use NPA aura free API on individual meta packets. Fixes: 4382a7ccf

Re: [PATCH v4 1/2] doc: increase python max line length to 100

2023-10-15 Thread Juraj Linkeš
On Fri, Oct 13, 2023 at 6:09 PM Stephen Hemminger wrote: > > On Fri, 13 Oct 2023 09:58:04 +0200 > Juraj Linkeš wrote: > > > Unify with C recommendations which allow line length of up to 100 > > characters. > > > > Signed-off-by: Juraj Linkeš > > Acked-by: Bruce Richardson > > --- > > .editorco

[PATCH v5 1/2] doc: increase python max line length to 100

2023-10-15 Thread Juraj Linkeš
Unify with C recommendations which allow line length of up to 100 characters. Signed-off-by: Juraj Linkeš Acked-by: Bruce Richardson --- .editorconfig| 2 +- doc/guides/contributing/coding_style.rst | 1 + dts/pyproject.toml | 4 ++-- 3 files ch

[PATCH v5 2/2] dts: reformat to 100 line length

2023-10-15 Thread Juraj Linkeš
Reformat to 100 from the previous 88 to unify with C recommendations. Signed-off-by: Juraj Linkeš Acked-by: Jeremy Spewock --- dts/framework/config/__init__.py | 20 ++- dts/framework/dts.py | 15 ++--- dts/framework/exception.py| 5

[Bug 1301] [dpdk-23.11] meson_tests/driver: core dumped occurred after link_bonding_autotest test

2023-10-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1301 Bug ID: 1301 Summary: [dpdk-23.11] meson_tests/driver: core dumped occurred after link_bonding_autotest test Product: DPDK Version: 23.11 Hardware: x86 OS: Linux