To bbdev maintainers,
Do you think we can avoid having some PMD-specific configuration?
It looks blocking migration from a driver to another.
How do we manage that?
13/10/2022 11:07, Akhil Goyal:
> There are 6 bbdev PMDs, out of which 3 have pmd APIs - all from Intel
> These are the PMD APIs for
From: Xuan Ding
This patchset introduces a new API rte_vhost_async_dma_unconfigure()
to help user to manually free DMA vchannels finished to use.
Note: this API should be called after async channel unregister.
v5:
* Use mutex instead of spinlock.
* Improve code readability.
v4:
* Rebase to 22.
From: Xuan Ding
Add a new API rte_vhost_async_dma_unconfigure() to unconfigure DMA
vchannels in vhost async data path. Lock protection are also added
to protect DMA vchannels configuration and unconfiguration
from concurrent calls.
Signed-off-by: Xuan Ding
---
doc/guides/prog_guide/vhost_lib.r
From: Xuan Ding
This patch applies rte_vhost_async_dma_unconfigure() to manually free
DMA vchannels. Before unconfiguration, make sure the specified DMA
device is no longer used by any vhost ports.
Signed-off-by: Xuan Ding
---
examples/vhost/main.c | 40 +++-
> From: pbhagavat...@marvell.com [mailto:pbhagavat...@marvell.com]
> Sent: Thursday, 13 October 2022 11.24
>
> From: Pavan Nikhilesh
>
> Increase xstats ID width to 64bits from 32 bits, this also
> fixes the xstats ID datatype discrepancy between reset and
> rest of the xstats family.
>
> Signe
The thread workspace push/pop should be paired. In the "flow_list_create"
routine, if error happened the workspace pop was missed. This patch shares
the workspace pop for all return paths.
Fixes: 0064bf431899 ("net/mlx5: fix nested flow creation")
Cc: xuemi...@nvidia.com
Cc: sta...@dpdk.org
Signe
Hi Sunil
> For this series
>
> Below shared patches seems fine, verified on AMD platform works fine.
>
> crypto/ccp: fix IOVA handling
> crypto/ccp: remove some dead code for UIO
> crypto/ccp: remove some printf
>
> Now working on the "crypto/ccp: fix PCI probing" patch and will update on
> th
> -Original Message-
> From: Cheng Jiang
> Sent: Tuesday, October 11, 2022 11:08 AM
> To: maxime.coque...@redhat.com; Xia, Chenbo
> Cc: dev@dpdk.org; Hu, Jiayu ; Ding, Xuan
> ; Ma, WenwuX ; Wang,
> YuanX ; Yang, YvonneX
> ; He, Xingguang ;
> Jiang, Cheng1 ; sta...@dpdk.org
> Subject: [PAT
Remove invoking include for sys/random.h which is not actually used
by app.
Signed-off-by: Gowrishankar Muthukrishnan
---
examples/fips_validation/fips_validation_rsa.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/examples/fips_validation/fips_validation_rsa.c
b/examples/fips_validation/f
12/10/2022 14:38, Feifei Wang пишет:
-邮件原件-
发件人: Konstantin Ananyev
发送时间: Wednesday, October 12, 2022 6:21 AM
收件人: Feifei Wang ; tho...@monjalon.net;
Ferruh Yigit ; Andrew Rybchenko
; Ray Kinsella
抄送: dev@dpdk.org; nd ; Honnappa Nagarahalli
; Ruifeng Wang
主题: Re: 回复: [PATCH v2 1/3]
On 2022-10-13 03:32, Naga Harish K, S V wrote:
>
>
>> -Original Message-
>> From: Jayatheerthan, Jay
>> Sent: Tuesday, October 11, 2022 12:40 PM
>> To: mattias.ronnblom ; Carrillo, Erik G
>> ; Gujjar, Abhinandan S
>> ; Jerin Jacob ; Naga
>> Harish K, S V
>> Cc: dev@dpdk.org; Van Haaren,
Hello I would like to unsubscribe but I don’t know how
On 2022-10-13 11:23, pbhagavat...@marvell.com wrote:
> From: Pavan Nikhilesh
>
> Increase xstats ID width to 64bits from 32 bits, this also
"Increase xstats ID width from 32 to 64 bits. This /../"
Not that "unsigned int" is always 32, but anyways, I guess that's true
for all platforms DPDK sup
From: Kumara Parameshwaran
When a TCP packet contains flags like PSH it is returned
immediately to the application though there might be packets of
the same flow in the GRO table. If PSH flag is set on a segment
packets upto the segment should be delivered immediately. But the
current implementat
All the necessary code needed to connect to a node in a topology with
a bit more, such as basic logging and some extra useful methods.
To run the code, modify the config file, conf.yaml and execute ./main.py
from the root dts folder. Here's an example config:
executions:
- system_under_test: "SU
Add configuration for Python tools used in DTS:
Poetry, dependency and package manager
Black, formatter
Pylama, static analysis
Isort, import sorting
Add Python and DTS specifics to .gitignore and .editorconfig. Of note is
the change of maximum line length of Python code to 88, which is a good
com
The Dockerfile contains basic image for CI and developers. There's also
an integration of the Dockerfile with Visual Studio.
The devtools that check Python code are Black and Isort to format the
code and Pylama to do static analysis.
Signed-off-by: Owen Hilyard
Signed-off-by: Juraj Linkeš
---
From: Owen Hilyard
The configuration is split into two parts, one defining the parameters
of the test run and the other defining the topology to be used.
The format of the configuration is YAML. It is validated according to a
json schema which also server as detailed documentation of the various
The logging module provides loggers distinguished by two attributes,
a custom format and a verbosity switch. The loggers log to both console
and more verbosely to files.
Signed-off-by: Owen Hilyard
Signed-off-by: Juraj Linkeš
---
dts/framework/__init__.py | 4 ++
dts/framework/logger.py | 1
The abstraction allows for easy switching of implementations of remote
connections (ssh, telnet, etc.). It implements some common features,
such as logging of commands and their outputs and history bookkeeping
and defines methods that must be implemented by derived classes.
Signed-off-by: Owen Hil
The module uses the pexpect python library and implements connection to
a node and two ways to interact with the node:
1. Send a string with specified prompt which will be matched after
the string has been sent to the node.
2. Send a command to be executed. No prompt is specified here.
Signed-o
The base class implements basic node management methods - connect and
execute commands.
Signed-off-by: Owen Hilyard
Signed-off-by: Juraj Linkeš
---
dts/framework/testbed_model/__init__.py | 8
dts/framework/testbed_model/node.py | 63 +
2 files changed, 71 inse
The module implements methods needed to run DTS. It handles the creation
of objects and eventually the whole DTS workflow, such as running node
setups, test gathering, setup and execution and various cleanups.
Signed-off-by: Owen Hilyard
Signed-off-by: Juraj Linkeš
---
dts/framework/dts.py |
The script is an interface to run DTS.
Signed-off-by: Owen Hilyard
Signed-off-by: Juraj Linkeš
---
dts/main.py | 24
1 file changed, 24 insertions(+)
create mode 100755 dts/main.py
diff --git a/dts/main.py b/dts/main.py
new file mode 100755
index 00..a70070765
Signed-off-by: Juraj Linkeš
---
MAINTAINERS | 5 +
1 file changed, 5 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 51d77460ec..e018e396d0 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -114,6 +114,11 @@ F: buildtools/symlink-drivers-solibs.py
F: devtools/test-meson-builds.sh
F:
Sorry to self-reply.
On 2022/10/12 12:06, fengchengwen wrote:
> Hi Dmitry,
>
> On 2022/10/11 23:58, Dmitry Kozlyuk wrote:
>> 2022-10-11 12:17 (UTC+), Chengwen Feng:
>> [...]
>>> diff --git a/doc/guides/prog_guide/memarea_lib.rst
>>> b/doc/guides/prog_guide/memarea_lib.rst
>>> new file mode 1
On Thu, Oct 13, 2022 at 10:35:07AM +, Juraj Linkeš wrote:
> All the necessary code needed to connect to a node in a topology with
> a bit more, such as basic logging and some extra useful methods.
>
> To run the code, modify the config file, conf.yaml and execute ./main.py
> from the root dts
'has_vlan' attribute is only supported by sfc, mlx5 and cnxk.
Other drivers doesn't support it. Most of them (like i40e) just
ignore it silently. Some drivers (like mlx4) never had a full
support of the eth item even before introduction of 'has_vlan'
(mlx4 allows to match on the destination MAC o
On 10/12/22 17:30, Thomas Monjalon wrote:
> 07/10/2022 13:55, Ilya Maximets:
>> On 10/7/22 13:50, Ilya Maximets wrote:
>>> On 9/12/22 12:09, Thomas Monjalon wrote:
16/03/2022 13:01, Ilya Maximets:
> 'has_vlan' attribute is only supported by sfc, mlx5 and cnxk.
> Other drivers doesn't s
From: Pavan Nikhilesh
Increase xstats ID width from 32 to 64 bits. This also
fixes the xstats ID datatype discrepancy between reset and
rest of the xstats family.
Signed-off-by: Pavan Nikhilesh
Acked-by: Morten Brørup
Reviewed-by: Mattias Rönnblom
---
v2 Changes:
- Fix compilation on 32 bit
Add support to override soft expiry poll frequency via devargs.
Also provide helper API to indicate reassembly support on a chip
and documentation for devargs that are already present.
Fixes: 780b9c89241b ("net/cnxk: support zero AURA for inline meta")
Signed-off-by: Nithin Dabilpuram
---
doc/g
From: Sathesh Edara
Set maximum frame size on SDP NIX side to 16KB for T93 A0-B0,
F95N A0 and F95O A0 SOC type. Rest of the SoCs SDP NIX to 64KB.
Signed-off-by: Sathesh Edara
---
v2:
- Add fixes line in patch 1/13
- Squash patch 8/13 to 7/13 as 7/13 is the patch that introduced the bug
- Add an
Fix later skip to include mbuf priv data as mbuf->buf_addr
is populated based on calculation including per-mbuf priv area.
Fixes: 706eeae60757 ("net/cnxk: add multi-segment Rx for CN10K")
cc: sta...@dpdk.org
Signed-off-by: Nithin Dabilpuram
---
drivers/net/cnxk/cn10k_rx.h| 4 +++-
drivers/n
In outbound inline case, use NIX Tx offset instead of
NIX Tx address for CN103XX as per new instruction format.
Signed-off-by: Nithin Dabilpuram
---
drivers/common/cnxk/roc_constants.h | 1 +
drivers/event/cnxk/cn10k_worker.h | 3 +++
drivers/net/cnxk/cn10k_ethdev.c | 6 ++
drivers/net
RQ mask config needs to enable SPB_ENA in order for Zero for
being able to override it with Meta aura.
Also fix flow control config to catch invalid rxchan config
errors.
Fixes: ddf955d3917e ("common/cnxk: support CPT second pass")
Fixes: da57d4589a6f ("common/cnxk: support NIX flow control")
Si
From: Satha Rao
Each TX schedule config mail box supports maximum 20 register updates.
This patch will send node weight updates in multiple mailbox when
TM created with more than 20 scheduler nodes.
Fixes: 464c9f919321 ("common/cnxk: support NIX TM dynamic update")
Cc: ndabilpu...@marvell.com
S
From: Satha Rao
Sync nix_hw_info structure with kernel.
Maintain default RR_QUANTUM for VF TL2 same as kernel to make
equal distribution among all VFs.
Signed-off-by: Satha Rao
---
drivers/common/cnxk/roc_mbox.h | 8 +-
drivers/common/cnxk/roc_nix.c | 9 ++-
drivers
From: Satha Rao
Setting non zero FC_HYST_BITS to reduce mesh traffic on HW.
Signed-off-by: Satha Rao
---
drivers/common/cnxk/roc_nix_queue.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/common/cnxk/roc_nix_queue.c
b/drivers/common/cnxk/roc_nix_queue.c
index 7318
From: Vamsi Attunuru
Handle SA soft packet and byte expiry event for Inline outbound SA.
Signed-off-by: Nithin Dabilpuram
---
drivers/net/cnxk/cn10k_ethdev_sec.c | 7 ++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/drivers/net/cnxk/cn10k_ethdev_sec.c
b/drivers/net/cnxk/cn
From: Sunil Kumar Kori
As per recent change in Linux-5.4.x, mailbox is updated to configure
mapping between channel and BPID. Due to mbox mismatch, PFC was broken.
Patch syncs mailbox definition for the same. Also fixes the PFC
configuration issues.
Signed-off-by: Sunil Kumar Kori
---
drivers/
Also remove ESN update from ucode command word 0 based on
latest ucode.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Vidya Sagar Velumuri
---
drivers/event/cnxk/cn9k_worker.h | 1 -
drivers/net/cnxk/cn10k_tx.h | 4
2 files changed, 5 deletions(-)
diff --git a/drivers/event/cnxk/cn
Remove duplicate mempool debug checks for mbufs received.
Fixes: 592642c494b1 ("net/cnxk: align prefetches to CN10K cache model")
Signed-off-by: Nithin Dabilpuram
---
drivers/net/cnxk/cn10k_rx.h | 6 --
1 file changed, 6 deletions(-)
diff --git a/drivers/net/cnxk/cn10k_rx.h b/drivers/net/cn
From: Vamsi Attunuru
Based on the hard limits configured in the SA context,
PMD passes corresponding event subtype to the application
to notify hard expiry event
Signed-off-by: Vamsi Attunuru
---
drivers/net/cnxk/cn10k_ethdev_sec.c | 6 ++
1 file changed, 6 insertions(+)
diff --git a/driv
Driver is disabled by default because its dependencies are not
upstreamed yet, code is available for development and investigation.
When all dependencies are upstreamed, driver can be enabled back.
Fixes: 517ed6e2d590 ("net/mana: add basic driver with build environment")
Signed-off-by: Ferruh Yi
> Subject: [v1] examples/fips_validation: remove unused include file
>
> Remove invoking include for sys/random.h which is not actually used
> by app.
>
> Signed-off-by: Gowrishankar Muthukrishnan
> ---
Squashed with original commit.
Thanks.
On 10/10/2022 7:48 AM, Chaoyong He wrote:
From: Peng Zhang
When the testpmd app start-up with parameter max-pkt-len, it will set MTU.
But the initialized value of flubfsz is inappropriate, if the value of
flbufsz is smaller than the valude of max-pkt-len, the testpmd app will
start fail.
Wha
On 10/10/2022 7:28 AM, Chaoyong He wrote:
Add the logics to support the feature of RSS packets based on
the inner layer of VXLAN tunnel.
Signed-off-by: Chaoyong He
Reviewed-by: Niklas Söderlund
Depends-on: series-24819 ("preparation for the rte_flow offload of nfp PMD")
---
drivers/net/nfp
13/10/2022 13:01, Ilya Maximets:
> On 10/12/22 17:30, Thomas Monjalon wrote:
> > 07/10/2022 13:55, Ilya Maximets:
> >> On 10/7/22 13:50, Ilya Maximets wrote:
> >>> On 9/12/22 12:09, Thomas Monjalon wrote:
> 16/03/2022 13:01, Ilya Maximets:
> > 'has_vlan' attribute is only supported by sfc,
Replace mempool_put with memset 0, the internal session memory block
is no longer allocated from a mempool
Fixes: 3f3fc3308bd0 ("security: remove private mempool usage")
Cc: gak...@marvell.com
Signed-off-by: Radu Nicolau
---
drivers/net/iavf/iavf_ipsec_crypto.c | 2 +-
1 file changed, 1 inserti
Replace mempool_put with memset 0, the internal session memory block
is no longer allocated from a mempool
Fixes: 3f3fc3308bd0 ("security: remove private mempool usage")
Cc: gak...@marvell.com
Signed-off-by: Radu Nicolau
---
drivers/net/ixgbe/ixgbe_ipsec.c | 4 +---
1 file changed, 1 insertion(
Replace mempool_put with memset 0, the internal session memory block
is no longer allocated from a mempool
Fixes: 3f3fc3308bd0 ("security: remove private mempool usage")
Cc: gak...@marvell.com
Signed-off-by: Radu Nicolau
---
drivers/net/txgbe/txgbe_ipsec.c | 3 +--
1 file changed, 1 insertion(+
> Replace mempool_put with memset 0, the internal session memory block
> is no longer allocated from a mempool
>
> Fixes: 3f3fc3308bd0 ("security: remove private mempool usage")
> Cc: gak...@marvell.com
>
> Signed-off-by: Radu Nicolau
> ---
Acked-by: Akhil Goyal
> Replace mempool_put with memset 0, the internal session memory block
> is no longer allocated from a mempool
>
> Fixes: 3f3fc3308bd0 ("security: remove private mempool usage")
> Cc: gak...@marvell.com
>
> Signed-off-by: Radu Nicolau
Acked-by: Akhil Goyal
> Replace mempool_put with memset 0, the internal session memory block
> is no longer allocated from a mempool
>
> Fixes: 3f3fc3308bd0 ("security: remove private mempool usage")
> Cc: gak...@marvell.com
>
> Signed-off-by: Radu Nicolau
Acked-by: Akhil Goyal
From: Kalesh AP
This patch supports proactive error handling mode.
Signed-off-by: Kalesh AP
Signed-off-by: Somnath Kotur
Reviewed-by: Ajit Khaparde
Reviewed-by: Chengwen Feng
---
drivers/net/bnxt/bnxt_cpr.c| 4
drivers/net/bnxt/bnxt_ethdev.c | 13 -
2 files changed, 16
This patch adds error handling mode to device info, currently, the
defined error handling modes include:
1) NONE: it means no error handling modes are supported by this port.
2) PASSIVE: passive error handling, after the PMD detect that a reset
is required, the PMD reports RTE_ETH_EVENT_INTR_RESE
This patchset introduce error handling mode concept, the supported modes
are as follows:
1) PASSIVE: passive error handling, after the PMD detect that a reset
is required, the PMD reports RTE_ETH_EVENT_INTR_RESET event, and
application invoke rte_eth_dev_reset to recover the port.
2) PROACTIVE:
From: Kalesh AP
Some PMDs (e.g. hns3) could detect hardware or firmware errors, one
error recovery mode is to report RTE_ETH_EVENT_INTR_RESET event, and
wait for application invoke rte_eth_dev_reset() to recover the port,
however, this mode has the following weaknesses:
1) Due to different hardw
From: Kalesh AP
This patch supports error handling mode event process.
Signed-off-by: Kalesh AP
Signed-off-by: Somnath Kotur
Signed-off-by: Chengwen Feng
Reviewed-by: Ajit Khaparde
---
app/test-pmd/parameters.c | 10 --
app/test-pmd/testpmd.c| 8 +++-
2 files changed, 15 in
This patch supports proactive error handling mode.
Signed-off-by: Chengwen Feng
Acked-by: Dongdong Liu
---
drivers/net/hns3/hns3_common.c | 2 ++
drivers/net/hns3/hns3_intr.c | 24
2 files changed, 26 insertions(+)
diff --git a/drivers/net/hns3/hns3_common.c b/drive
Hi Andrew,
I rework part of rst according your comments, sent by v13, please take a look.
Thanks.
On 2022/10/13 16:58, Andrew Rybchenko wrote:
> On 10/12/22 06:45, Chengwen Feng wrote:
>> From: Kalesh AP
>>
>> Some PMDs (e.g. hns3) could detect hardware or firmware errors, one
>> error recove
> -Original Message-
> From: David Marchand
> Sent: Monday, October 10, 2022 3:48 PM
> To: Tu, Lijuan
> Cc: Richardson, Bruce ; Thomas Monjalon
> ; dev@dpdk.org; c...@dpdk.org; Lincoln Lavoie
> ; Chen, Zhaoyan ; Mcnamara,
> John
> Subject: Re: [PATCH v2] build: increase minimum meson v
> Enable validation functions by default and provide a new flag
> RTE_LIBRTE_SKIP_VALIDATE if the user wants to run without
> validating input to save cycles.
>
> Signed-off-by: Hernan Vargas
>
> Reviewed-by: Maxime Coquelin
> ---
> drivers/baseband/acc/rte_acc100_pmd.c | 36 +-
> Hernan Vargas (30):
> baseband/acc100: fix ring availability calculation
> baseband/acc100: add function to check AQ availability
> baseband/acc100: memory leak fix
> baseband/acc100: add LDPC encoder padding function
> baseband/acc100: check turbo dec/enc input
> baseband/acc100: che
> Rename total_enqueued_cbs to total_enqueued_descs in the
> enqueue_ldpc_enc_n_op_cb function. No functional impact.
>
Can you specify the reason for rename in description?
> Signed-off-by: Hernan Vargas
>
> Reviewed-by: Maxime Coquelin
> Add function to support de-ratematch pre-processing for SW corner cases.
>
Please add more meaningful description.
Title says adding workaround. You should explain the issue and then what is
done in this patch.
> Signed-off-by: Hernan Vargas
> ---
> drivers/baseband/acc/acc_common.h |
Some environments (buildroot) do not have the ldd utility installed by
default. However, ldd is often only a wrapper shell script that actually
checks that the arguments are valid ELF files and executes them with
the LD_TRACE_LOADED_OBJECTS=1 variable set in the environment.
Since ld.so is the act
On Thu, Oct 13, 2022 at 1:20 PM David Marchand
wrote:
>
I would suggest to change the subject as "trace: enable trace
operations via telemetry" or so
> Register telemetry commands to list and configure trace points and later
> save traces for a running DPDK application.
>
> Note: trace point nam
Hi Wenjun,
On Mon, Oct 10, 2022 at 01:30:54AM +, Wu, Wenjun1 wrote:
> Hi Olivier,
>
> > -Original Message-
> > From: Olivier Matz
> > Sent: Thursday, September 29, 2022 8:22 PM
> > To: dev@dpdk.org
> > Cc: Yang, Qiming ; Wu, Wenjun1
> > ; Zhao1, Wei
> > Subject: [PATCH] net/ixgbevf:
> -int
> +static int
> trace_mkdir(void)
> {
> struct trace *trace = trace_obj_get();
> char session[TRACE_DIR_STR_LEN];
> + static bool already_done;
> char *dir_path;
> int rc;
>
> + if (already_done)
> + return 0;
> +
Hi David
I was trying out "t
Read slice configuration of QAT capabilities.
This will allow to recognize if specific hw function
is available on particular device.
Signed-off-by: Arek Kusztal
---
drivers/common/qat/dev/qat_dev_gen1.c| 8 +++
drivers/common/qat/dev/qat_dev_gen2.c| 8 +++
drivers/common/qat/d
On 10/12/22 17:19, Bruce Richardson wrote:
On Wed, Oct 12, 2022 at 04:47:03PM +0200, Markus Theil wrote:
Makes apps configureable from meson, like already
possible for drivers.
Signed-off-by: Markus Theil
---
app/meson.build | 17 -
meson_options.txt | 4
2 files ch
On 10/12/22 17:21, Bruce Richardson wrote:
On Wed, Oct 12, 2022 at 04:47:04PM +0200, Markus Theil wrote:
From: Thorben Roemer
In order to perform things like LTO more easily in
our DPDK applications, we use DPDK as a meson subproject.
Also export includes in order to be usable in this context.
Makes apps configurable from meson, like already
possible for drivers.
Signed-off-by: Markus Theil
---
app/meson.build | 9 -
meson_options.txt | 4
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/app/meson.build b/app/meson.build
index 93d8c15032..24096e8108 100644
From: Thorben Roemer
In order to perform things like LTO more easily in
our DPDK applications, we use DPDK as a meson subproject.
Also export includes in order to be usable in this context.
Signed-off-by: Thorben Roemer
---
lib/meson.build | 1 +
meson.build | 1 +
2 files changed, 2 inser
Makes apps configurable from meson, like already
possible for drivers.
Signed-off-by: Markus Theil
---
app/meson.build | 9 -
meson_options.txt | 4
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/app/meson.build b/app/meson.build
index 93d8c15032..24096e8108 100644
From: Thorben Roemer
In order to perform things like LTO more easily in
our DPDK applications, we use DPDK as a meson subproject.
Also export includes in order to be usable in this context.
Signed-off-by: Thorben Roemer
---
drivers/baseband/fpga_5gnr_fec/meson.build | 2 ++
drivers/dma/dpaa2/m
Release status meeting minutes 2022-10-13
=
Agenda:
* Release Dates
* Subtrees
* Roadmaps
* LTS
* Defects
* Opens
Participants:
* ARM
* Canonical [No]
* Debian/Microsoft [No]
* Intel
* Marvell
* Nvidia
* Red Hat
* Xilinx/AMD
Release Dates
-
T
On Thu, Oct 13, 2022 at 4:53 PM Harman Kalra wrote:
>
>
> > -int
> > +static int
> > trace_mkdir(void)
> > {
> > struct trace *trace = trace_obj_get();
> > char session[TRACE_DIR_STR_LEN];
> > + static bool already_done;
> > char *dir_path;
> > int rc;
> >
> > + i
> Subject: [PATCH] net/mana: disable driver by default
>
> Driver is disabled by default because its dependencies are not upstreamed
> yet, code is available for development and investigation.
>
> When all dependencies are upstreamed, driver can be enabled back.
>
> Fixes: 517ed6e2d590 ("net/man
On Thu, Oct 13, 2022 at 05:11:38PM +0200, Markus Theil wrote:
> On 10/12/22 17:19, Bruce Richardson wrote:
> > On Wed, Oct 12, 2022 at 04:47:03PM +0200, Markus Theil wrote:
> > > Makes apps configureable from meson, like already
> > > possible for drivers.
> > >
> > > Signed-off-by: Markus Theil
On Thu, Oct 13, 2022 at 05:35:39PM +0200, Markus Theil wrote:
> From: Thorben Roemer
>
> In order to perform things like LTO more easily in
> our DPDK applications, we use DPDK as a meson subproject.
> Also export includes in order to be usable in this context.
>
> Signed-off-by: Thorben Roemer
> -Original Message-
> From: David Marchand
> Sent: Thursday, October 13, 2022 9:22 PM
> To: Harman Kalra
> Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Sunil
> Kumar Kori ; sta...@dpdk.org
> Subject: Re: [EXT] [PATCH v3 5/9] trace: fix dynamically enabling trace points
>
> On Thu, Oc
BEGIN:VCALENDAR
PRODID:-//Google Inc//Google Calendar 70.9054//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VEVENT
DTSTART:20221020T13Z
DTEND:20221020T14Z
DTSTAMP:20221013T172653Z
ORGANIZER;CN=nsouth...@linuxfoundation.org:mailto:nsouthern@linuxfoundation
.org
UID:6s3tlf8sg4soovm
BEGIN:VCALENDAR
PRODID:-//Google Inc//Google Calendar 70.9054//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VTIMEZONE
TZID:America/Detroit
X-LIC-LOCATION:America/Detroit
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:19700308T02
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY
On 10/12/2022 1:13 PM, Qiming Yang wrote:
As stop action has been forbidden in secondary process, so
the reset action should also not be allowed.
Fixes: a550baf24af9 ("app/testpmd: support multi-process")
Cc: sta...@dpdk.org
Signed-off-by: Qiming Yang
Acked-by: Aman Singh
---
app/test-pm
BEGIN:VCALENDAR
PRODID:-//Google Inc//Google Calendar 70.9054//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VTIMEZONE
TZID:America/Detroit
X-LIC-LOCATION:America/Detroit
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:19700308T02
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY
BEGIN:VCALENDAR
PRODID:-//Google Inc//Google Calendar 70.9054//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VTIMEZONE
TZID:America/Detroit
X-LIC-LOCATION:America/Detroit
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:19700308T02
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY
BEGIN:VCALENDAR
PRODID:-//Google Inc//Google Calendar 70.9054//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VTIMEZONE
TZID:America/Detroit
X-LIC-LOCATION:America/Detroit
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:19700308T02
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY
BEGIN:VCALENDAR
PRODID:-//Google Inc//Google Calendar 70.9054//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VTIMEZONE
TZID:America/Detroit
X-LIC-LOCATION:America/Detroit
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:19700308T02
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY
On Thu, Oct 13, 2022 at 7:07 PM Harman Kalra wrote:
> >
> > With the whole traces fixes series applied first, then the new "trace:
> > take live traces via telemetry" patch applied, I can't reproduce your issue.
> >
> >
>
> Yes, you replicated the same scenario what I tried.
> Sorry, I realized th
Noticed that test-pmd is using a signal handler to exit.
And that signal handle clears a flag "f_quit".
But that variable is updated without atomic and is not volatile.
Simple fix to use atomic, would fix that part.
But the signal_handler is calling a bunch of functions that are not
safe in a sign
> On 10/10/2022 7:28 AM, Chaoyong He wrote:
> > Add the logics to support the feature of RSS packets based on the
> > inner layer of VXLAN tunnel.
> >
> > Signed-off-by: Chaoyong He
> > Reviewed-by: Niklas Söderlund
> >
> > Depends-on: series-24819 ("preparation for the rte_flow offload of nfp
>
> -Original Message-
> From: Olivier Matz
> Sent: Thursday, October 13, 2022 10:46 PM
> To: Wu, Wenjun1
> Cc: dev@dpdk.org; Yang, Qiming ; Zhao1, Wei
>
> Subject: Re: [PATCH] net/ixgbevf: fix promiscuous and allmulti
>
> Hi Wenjun,
>
> On Mon, Oct 10, 2022 at 01:30:54AM +, Wu, W
Option to move PMD API into bbdev API.
For discussion only, not yet sure this is the
right way to go.
Nicolas Chautru (1):
bbdev: device PF initialization helper through bbdev API
app/test-bbdev/test_bbdev_perf.c | 10 +-
drivers/baseband/acc/acc100_pmd.h | 1 -
dri
Moved from PMD API to bbdev API.
This API is only meant for bbdev-test usage (notably for OEMs).
The actual configuration structure still need to
be exposed as it is device specific.
RFI only
Signed-off-by: Nicolas Chautru
---
app/test-bbdev/test_bbdev_perf.c | 10 +-
drivers/baseb
Hi,
There are a few options:
1) Keep as is, but not too scalable to keep on adding PMD APIs. Still there is
no plan on adding more API, so no rush.
2) Keep API internal only (but in that case only work with static lib I believe)
3) Take out off DPDK, but that is used by users notably OEMs and fo
TCP data packets sometimes carry a PUSH flag. Currently,
only the packets that do not have PUSH flag can be GROed.
The packets that have a PUSH flag cannot be GROed, the packets
that cannot be processed by GRO are placed last.
In this case, the received packets may be out of ord
v13: Leftover commit 16 from the acc200 series (introduced in v10).
Updated the commit message and documentation incl. rel notes
and bbdev-test one suggested by Maxime.
Modification of vector used. Thanks.
v12: Rebase between commits notably to avoid interim build issue and test
From: Nic Chautru
Added support for bbdev level unit test
for the FFT operations and for Soft-Output options.
Also added 2 small test vectors for the FFT operation.
Signed-off-by: Nic Chautru
Reviewed-by: Maxime Coquelin
---
app/test-bbdev/test_bbdev_perf.c| 540 +++-
app/
1 - 100 of 156 matches
Mail list logo