On Thu, Sep 29, 2022 at 2:05 PM Olivier Matz wrote:
>
> The dev->device.numa_node field is set by each bus driver for
> every device it manages to indicate on which NUMA node this device lies.
>
> When this information is unknown, the assigned value is not consistent
> across the bus drivers.
>
>
> -Original Message-
> From: Wang, YuanX
> Sent: Friday, September 30, 2022 2:59 AM
> To: dev@dpdk.org; Yang, Qiming ; Zhang, Qi Z
>
> Cc: tho...@monjalon.net; andrew.rybche...@oktetlabs.ru;
> ferruh.yi...@xilinx.com; m...@ashroe.eu; Li, Xiaoyun ;
> Singh, Aman Deep ; Zhang, Yuying
> ;
On Tue, Sep 27, 2022 at 9:02 PM wrote:
>
> From: Pavan Nikhilesh
>
> Fix missing xstats ops registration when initializing event device.
>
> Fixes: b5a52c9d97e2 ("event/cnxk: add event port and queue xstats")
>
> Signed-off-by: Pavan Nikhilesh
Applied to dpdk-next-net-eventdev/for-main. Thanks
On Thu, Sep 29, 2022 at 12:51 PM Bruce Richardson
wrote:
>
> Library functions should not cause the app to exit or panic. Replace the
> existing panic call in the EAL remote launch functions with an error
> code return instead.
>
> Signed-off-by: Bruce Richardson
LGTM with an update of the relea
On Wed, Sep 28, 2022 at 8:26 AM Gagandeep Singh wrote:
>
> Hi Thomas,
>
> One of the customer has objected this patch as they are going to use it in
> future so please discard it.
This needs an update for the deprecation notices wrt 10f0e51554b4
("doc: announce removal of DPAA2 cmdif raw driver"
From: Huisong Li
Currently, driver sets RSS function to 'RTE_ETH_HASH_FUNCTION_MAX'
when user flush all rules in order to judge whether driver needs
to restore RSS rules. In fact, all rules are saved in flow RSS list.
So there is no need to modify RSS function to this macro. And this
list can be
This patchset include some bugfixes and clean code for hns3.
This patchset is based on the patchset [1] that have been sent out
before. Depend on [1] applied first.
[1]: [PATCH RESEND 00/13] some bugfixes and clean code for hns3
https://patches.dpdk.org/project/dpdk/list/?series=24533
Chengwen Fe
From: Huisong Li
The 'hns3_restore_rss_filter' function is used to restore RSS rule.
But this function calls the 'hns3_config_rss_filter' which sets the
last to invalid in flow RSS list. This causes the flow RSS list has
no valid rule.
Fixes: ec674cb742e5 ("net/hns3: fix flushing RSS rule")
Cc:
From: Huisong Li
RSS flow rules are saved in RSS filter linked list. The linked
list is modified by rte_flow API and is used to restore RSS rules
during reset process. So this patch uses 'hw->flows_lock' to protect
the configuration and recovery of RSS rule.
Fixes: c37ca66f2b27 ("net/hns3: suppo
From: Huisong Li
After reset process, types of RSS flow rule cannot be restored when
load driver without RTE_ETH_MQ_RX_RSS_FLAG flag. This is because the
restoration for RSS flow rule is done in the 'hns3_config_rss()'. But
this function is also used to configure and restore RSS configuration
fro
meson build -Db_coverage=true
ninja -C build
../drivers/net/hns3/hns3_ethdev.c:2856:22: warning: ‘cfg.umv_space’ may be
used uninitialized in this function [-Wmaybe-uninitialized]
2856 | pf->wanted_umv_size = cfg.umv_space;
This patch fix compiling warnings using gcc10.3.1 version.
Signed-off-
From: Jie Hai
Removing magic numbers with macros.
Signed-off-by: Jie Hai
Signed-off-by: Dongdong Liu
---
drivers/net/hns3/hns3_ethdev.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c
index bbc086f21d..a
From: Huisong Li
Currently, hns3 reports VXLAN tunnel packet type for GENEVE,
which is misleading to user. In fact, hns3 hardware cannot
distinguish between VXLAN and GENEVE packet. So this patch
uses RTE_PTYPE_TUNNEL_GRENAT packet type to report.
Fixes: 7d6df32cf742 ("net/hns3: fix missing oute
From: Huisong Li
This 'hns3_restore_filter' is an internal interface of driver.
Currently, it uses 'struct rte_eth_dev *dev' as input parameter,
This is inconvenient for the function to call in driver because
caller has to obtain its device address by global variable
'rte_eth_devices[]'. So this
From: Huisong Li
The 'hns3_restore_filter' is used to restore flow rules from
rte_flow API during the reset process. This patch moves the
recovery of flow direction rule to this function to improve
code maintainability.
Fixes: fcba820d9b9e ("net/hns3: support flow director")
Cc: sta...@dpdk.org
From: Chengwen Feng
This patch removes unused structure definition.
Signed-off-by: Chengwen Feng
Signed-off-by: Dongdong Liu
---
drivers/net/hns3/hns3_cmd.h | 19 ---
drivers/net/hns3/hns3_rss.h | 4
2 files changed, 23 deletions(-)
diff --git a/drivers/net/hns3/hns3_cm
From: Chengwen Feng
Header files should be self contained and should not be cyclically
dependent. This patch fixed it.
Signed-off-by: Chengwen Feng
Signed-off-by: Min Hu
Signed-off-by: Dongdong Liu
---
drivers/net/hns3/hns3_cmd.h| 3 +++
drivers/net/hns3/hns3_common.c | 2 +-
drivers/net
From: Chengwen Feng
Currently, the hns3 driver uses _HNS3_XXX conditional compilation
macros to prevent duplicate header files. But in the C11 standard, all
identifiers starting with an underscore plus an uppercase letter are
always reserved. So this patch fixes it.
Signed-off-by: Chengwen Feng
From: Huisong Li
Currently, hns3 driver use 'ipv4-other' and 'ipv6-other' as the flag
of IP packets to judge if enable RSS tuple field. But user may use
'RTE_ETH_RSS_IPV4' or 'RTE_ETH_RSS_IPV6' as the flag. So this patch
adds the processing of these macros.
Fixes: 806f1d5ab0e3 ("net/hns3: set RS
From: Huisong Li
This patch fixes spelling errors about IPV6-SCTP macro.
Fixes: 1bc633c34008 ("net/hns3: enable RSS for IPv6-SCTP dst/src port fields")
Cc: sta...@dpdk.org
Signed-off-by: Huisong Li
Signed-off-by: Dongdong Liu
---
drivers/net/hns3/hns3_rss.c | 12 ++--
1 file changed,
From: Huisong Li
When user set 'L3_SRC/DST_ONLY' or 'L4_SRC/DST_ONLY' to 'rss_hf' and
do not specify the packet type, these types will be set to hardware.
So this patch adds a check for them.
Fixes: 806f1d5ab0e3 ("net/hns3: set RSS hash type input configuration")
Cc: sta...@dpdk.org
Signed-off-
From: Huisong Li
When user only use 'ipv4' to set 'rss_hf', hns3 will enable
all tuple fields for 'ipv4' flow. But if user use 'ipv4-tcp'
, 'ipv4' and 'l4-src-only' to set 'rss_hf', driver does not
enable all tuple fields for 'ipv4' flow. So this patch fixes
this problem.
Fixes: 806f1d5ab0e3 ("n
From: Chengwen Feng
VF's command receive queue was mainly used to receive mailbox messages
from PF. There are two type mailbox messages: request response message
and message pushed by PF.
There are two types of threads that can handle these messages:
1) the interrupt thread of the main process:
From: Jie Hai
When packet length in Tx is less than length hardware supported,
the minimum frame length in hns3 is used to do padding to avoid
hardware error. Currently, this length is fixed by macro, which
is very unfavorable for subsequent hardware evolution. So fix it
as firmware report.
Fixe
From: Chengwen Feng
VF's command receive queue was mainly used to receive mailbox messages
from PF. There are two type mailbox messages: request response message
and message pushed by PF.
There are two types of threads that can handle these messages:
1) the interrupt thread of the main process:
On Thu, Sep 29, 2022 at 6:08 PM Amit Prakash Shukla
wrote:
>
> Add trace points for cryptodev functions.
>
> Signed-off-by: Amit Prakash Shukla
Looks good from tracing PoV.
Reviewed-by: Jerin Jacob
> ---
> v2:
> - Removed trace changes for non-public API
> - Code changes to include API result
Hi Nic,
On 9/29/22 21:48, Chautru, Nicolas wrote:
Hi Thomas,
In absence of Ray (I did not see email from him for a some time) can you please
advise on best option so that as to move on.
I can either keep as is based on initial review with Ray, or replace
_PADDED_MAX to _SIZE_MAX macro as sugge
Add all necessary elements for DPDK to compile and run EAL on
LoongArch64 Soc.
This includes:
- EAL library implementation for LoongArch ISA.
- meson build structure for 'loongarch' architecture.
RTE_ARCH_LOONGARCH define is added for architecture identification.
- xmm_t structure operation stu
Checks cross-compilation using Ubuntu 20.04 x86 for LoongArch.
Signed-off-by: Min Zhou
---
.ci/linux-build.sh | 10 ++
.github/workflows/build.yml | 10 +-
2 files changed, 19 insertions(+), 1 deletion(-)
diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh
index 06104e
Dear team,
The following patch set is intended to support DPDK running on LoongArch
architecture.
LoongArch is the general processor architecture of Loongson Corporation
and is a new RISC ISA, which is a bit like MIPS or RISC-V.
The online documents of LoongArch architecture are here:
https:
Similar to RISC-V, the current version for LoongArch do not support
vector. Re-use vector processing stubs in ixgbe PMD defined for PPC
for LoongArch. This enables ixgbe PMD usage in scalar mode on
LoongArch.
The ixgbe PMD driver was validated with Intel X520-DA2 NIC and the
test-pmd application,
Add missing em_mask_key() implementation to enable the l3fwd to be
run on LoongArch.
Signed-off-by: Min Zhou
---
examples/l3fwd/l3fwd_em.c | 8
examples/l3fwd/meson.build | 6 --
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/examples/l3fwd/l3fwd_em.c b/examples/l3f
Define the missing __NR_bpf syscall id to enable the tap PMD on
LoongArch.
Signed-off-by: Min Zhou
---
drivers/net/tap/meson.build | 6 --
drivers/net/tap/tap_bpf.h | 2 ++
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/net/tap/meson.build b/drivers/net/tap/meson.bu
Add checks for all flag values defined in the LoongArch cpu
feature table.
Signed-off-by: Min Zhou
---
app/test/test_cpuflags.c | 41
1 file changed, 41 insertions(+)
diff --git a/app/test/test_cpuflags.c b/app/test/test_cpuflags.c
index 98a99c2c7d..a0e3
Define the missing __NR_memfd_create syscall id to enable the memif
PMD on LoongArch.
Signed-off-by: Min Zhou
---
drivers/net/memif/meson.build | 6 --
drivers/net/memif/rte_eth_memif.h | 2 ++
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/net/memif/meson.build b
> -Original Message-
> From: Stanislaw Kardach
> Sent: Tuesday, September 27, 2022 12:12 PM
> To: Juraj Linkeš
> Cc: tho...@monjalon.net; david.march...@redhat.com;
> honnappa.nagaraha...@arm.com; ohily...@iol.unh.edu; lijuan...@intel.com;
> bruce.richard...@intel.com; dev@dpdk.org
> Su
On Fri, Sep 30, 2022 at 09:10:55AM +0200, David Marchand wrote:
> On Thu, Sep 29, 2022 at 2:05 PM Olivier Matz wrote:
> >
> > The dev->device.numa_node field is set by each bus driver for
> > every device it manages to indicate on which NUMA node this device lies.
> >
> > When this information is
Hello,
On Fri, Sep 30, 2022 at 10:02 AM Min Zhou wrote:
>
> Dear team,
>
> The following patch set is intended to support DPDK running on LoongArch
> architecture.
>
> LoongArch is the general processor architecture of Loongson Corporation
> and is a new RISC ISA, which is a bit like MIPS or RISC
On Fri, Sep 30, 2022 at 5:29 AM Abdullah Sevincer
wrote:
>
> For best performance, applications running on certain cores should use
> the DLB device locally available on the same tile along with other
> resources. To allocate optimal resources, probing is done for each
> producer port (PP) for a g
On Sat, Aug 20, 2022 at 12:30 PM Morten Brørup
wrote:
>
> The rte_mov256 function was missing for AVX2.
Afaiu:
Fixes: 9144d6bcdefd ("eal/x86: optimize memcpy for SSE and AVX")
This has been missing for a long time, so I guess nobody actually uses it.
>
> Signed-off-by: Morten Brørup
Acked-by:
> -Original Message-
> From: Akhil Goyal
> Sent: Thursday, September 29, 2022 9:25 PM
> To: Kusztal, ArkadiuszX ; dev@dpdk.org
> Cc: Ji, Kai
> Subject: RE: [EXT] [PATCH v2 0/2] cryptodev: add SM3 and SM4 algorithms
>
> > ShangMi 4 (SM4) is a block cipher used in the Chinese National
>
On Fri, Sep 23, 2022 at 10:25 AM Bruce Richardson
wrote:
> On Thu, Sep 22, 2022 at 01:44:13PM +0200, Morten Brørup wrote:
> > Checking a const pointer for alignment would emit a warning about the
> > const qualifier being discarded.
> >
> > No need to calculate the aligned pointer; just check the
> > > ShangMi 4 (SM4) is a block cipher used in the Chinese National
> > > Standard for Wireless LAN WAPI and also used with Transport Layer
> > > Security.
> > > ShangMi 3 (SM3) is a cryptographic hash function used in the Chinese
> > > National Standard.
> > >
> > > This patcheset adds both to t
Added functionality to parse algorithm for AES CTR test
Signed-off-by: Brian Dooley
Acked-by: Kai Ji
Acked-by: Gowrishankar Muthukrishnan
---
v2: fix clang warning for int-in-bool-context
---
v3: in reply to fix and patchwork CI
---
v4: missing acks
---
examples/fips_validation/fips_validation
On Mon, Sep 26, 2022 at 12:03 PM Abdullah Ömer Yamaç
wrote:
>
> In this patch we suggest a new name for lcore-worker.
> In case of higher order (greater than 99) logical cores, name is truncated
> (length is restricted to 16 characters, including the
> terminating null byte ('\0')) and it makes ha
On Thu, Sep 29, 2022 at 12:14 AM Abdullah Sevincer
wrote:
>
> This patch addresses an issue of enqueuing more than
> max_enq_depth and not able to dequeuing events equal
> to max_cq_depth in a single call of rte_event_enqueue_burst
> and rte_event_dequeue_burst.
>
> Apply fix for restricting enque
On 9/29/2022 6:27 AM, Zhichao Zeng wrote:
This patch is to fix the tunnel TSO not enabling issue, simplify
the logic of calculating 'Tx Buffer Size' of data descriptor with IPSec,
and fix handling that the mbuf size exceeds the TX descriptor
hardware limit(1B-16KB) which causes malicious behavi
As part of DPDK 21.11 release, it was announced that the
use of attributes 'ingress' and 'egress' in 'transfer'
rules was deprecated. The transition period is over.
Starting from DPDK 22.11, the use of direction attributes
with attribute 'transfer' is not allowed. To enforce that,
a generic check
https://bugs.dpdk.org/show_bug.cgi?id=1088
Bug ID: 1088
Summary: [20.11] meson compatibility regression
Product: DPDK
Version: 20.11
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Pri
Hi All,
Could you please review and provide suggestions if any.
Thanks,
Satha.
-Original Message-
From: skotesh...@marvell.com
Sent: Wednesday, September 28, 2022 11:22 AM
To: Aman Singh ; Yuying Zhang
; Ray Kinsella ; Ajit Khaparde
; Somnath Kotur ;
Nithin Kumar Dabilpuram ; Kiran
Hi, David,
Thanks a lot for your kind reply.
On Fri, Sep 30, 2022 at 16:13, David Marchand wrote:
Hello,
On Fri, Sep 30, 2022 at 10:02 AM Min Zhou wrote:
Dear team,
The following patch set is intended to support DPDK running on LoongArch
architecture.
LoongArch is the general processor arc
On Thu, Sep 29, 2022 at 3:30 PM wrote:
>
> From: Pavan Nikhilesh
>
> Deprecation notice targeted for v22.11 of event vector has been
> merged in the following commits, remove deprecation notices.
>
> Fixes: 7b12f13ce3ee ("eventdev: add element offset to event vector")
>
> Signed-off-by: Pavan Nik
On 9/28/22 18:03, Thomas Monjalon wrote:
28/09/2022 17:21, Claudio Fontana:
On 9/28/22 16:37, Maxime Coquelin wrote:
The title should be reworded, maybe something like below?
"vhost: fix possible out of bound access in buffer vectors"
possible, I leave it to you and other maintainers here
Hi Ivan,
> -Original Message-
> From: Ivan Malov
> Sent: Friday, 30 September 2022 12:43
>
> As part of DPDK 21.11 release, it was announced that the
> use of attributes 'ingress' and 'egress' in 'transfer'
> rules was deprecated. The transition period is over.
>
> Starting from DPDK 22
ShangMi 4 (SM4) is a block cipher used in the Chinese National Standard for
Wireless LAN WAPI and also used with Transport Layer Security.
ShangMi 3 (SM3) is a cryptographic hash function used in the Chinese National
Standard.
This patcheset adds both to the Intel QuickAssist Technology PMD.
De
- Added ShangMi 4 (SM4) encryption algorithms.
Supported modes: ECB, CBC, CTR.
Signed-off-by: Arek Kusztal
---
doc/guides/cryptodevs/features/qat.ini | 3 +++
doc/guides/rel_notes/release_22_11.rst | 4
drivers/crypto/qat/dev/qat_crypto_pmd_gen3.c | 9 +
drivers/crypt
- Added ShangMi 3 (SM3) hash algorithm.
Signed-off-by: Arek Kusztal
---
doc/guides/cryptodevs/features/qat.ini | 1 +
doc/guides/rel_notes/release_22_11.rst | 3 +++
drivers/common/qat/qat_adf/icp_qat_hw.h | 4 +++-
drivers/crypto/qat/qat_sym_session.c| 25 +
4 f
There should be no spaces in flow command arguments name.
This commit removes incorrect arguments name in queue based table
template.
Fixes: ecdc927b99f2 ("app/testpmd: add async flow create/destroy operations")
Cc: akozy...@nvidia.com
Signed-off-by: Suanming Mou
---
app/test-pmd/cmdline_flow.c
On Tue, Sep 27, 2022 at 8:18 AM Feifei Wang wrote:
>
> Enable direct rearm mode in l3fwd. Users can use parameters:
> '--direct-rearm=(rx_portid,rx_queueid,tx_portid,tx_queueid)'
> to enable direct rearm.
>
> Suggested-by: Honnappa Nagarahalli
> Signed-off-by: Feifei Wang
> Reviewed-by: Ruifeng
On Thu, Sep 29, 2022 at 6:11 PM Kevin Laatz wrote:
>
> >
> >> 2. Ring does not have callback support, meaning pipelined applications
> >> could not report lcore poll busyness telemetry with this approach.
> > That's another big concern that I have:
> > Why you consider that all rings will be used
Fix a typo in computing port mask for Tx checksum offload capability.
Fixes: 4edcee19fc20 ("examples/ipsec-secgw: use Tx checksum offload
conditionally")
Cc: ndabilpu...@marvell.com
Signed-off-by: Radu Nicolau
---
examples/ipsec-secgw/ipsec-secgw.c | 2 +-
1 file changed, 1 insertion(+), 1 del
The skeleton of mlx5 HW steering(HWS) has been updated into
upstream for pretty a long time, but not updated anymore due
to missing of the low-level steering layer code. Luckily,
better late than never, the steering layer finnaly comes[1].
This series will add more features to the existing PMD cod
In the function flow_get_drv_type(), attr will be read in non-HWS mode.
In case user call the HWS API in SWS mode, attr should be placed in
HWS functions, or it will cause crash.
Fixes: 572801ab860f ("ethdev: backport upstream rte_flow_async codes")
Signed-off-by: Suanming Mou
---
drivers/net/m
In the flow_dv_hashfields_set() function, while item_flags was 0,
the code went directly to the first if and the else case would
never have chance be checked. This caused the IPv6 and TCP hash
fileds in the else case would never be set.
This commit adds the dedicate HW steering hash field set func
As the rte_flow_async API defines, the action mask with field value
not be 0 means the action will be used as shared in all the flows in
the table.
The header reformat action with action mask field not be 0 will be
created as constant shared action. For encapsulation header reformat
action, there
This patch introduces support for modify_field rte_flow actions in HWS
mode. Support includes:
- Ingress and egress domains,
- SET and ADD operations,
- usage of arbitrary bit offsets and widths for packet and metadata
fields.
Support is implemented in two phases:
From: Dariusz Sosnowski
This patch implements creating and caching of port actions for use with
HW Steering FDB flows.
Actions are created on flow template API configuration and created
only on the port designated as master. Attaching and detaching of ports
in the same switching domain causes an
From: Bing Zhao
The new mode 4 of devarg "dv_xmeta_en" is added for HWS only. In this
mode, the Rx / Tx metadata with 32b width copy between FDB and NIC is
supported. The mark is only supported in NIC and there is no copy
supported.
Signed-off-by: Bing Zhao
---
drivers/net/mlx5/linux/mlx5_os.c
From: Xiaoyu Min
This commit adds HW steering counter action support.
Pool mechanism is the basic data structure for the HW steering counter.
The HW steering's counter pool is based on the rte_ring of zero-copy
variation.
There are two global rte_rings:
1. free_list:
Store the counters ind
From: Dariusz Sosnowski
This patch adapts mlx5 PMD to changes in mlx5dr API regarding action
templates. It changes the following:
1. Actions template creation:
- Flow actions types are translated to mlx5dr action types in order
to create mlx5dr_action_template object.
- An offset
From: Alexander Kozyrev
This commit adds meter action for HWS steering.
HW steering meter is based on ASO. The number of meters will
be used by flows should be specified in advanced in the flow
configure API.
Signed-off-by: Alexander Kozyrev
---
drivers/net/mlx5/mlx5.h| 61 ++-
d
This commit adds the support of connection tracking to HW steering as
SW steering did before.
Different with SW steering implementation, take advantage of HW steering
bulk action allocation support, in HW steering only one single CT pool
is needed.
An indexed pool is introduced to record allocate
From: Gregory Etelson
Add PMD implementation for HW steering VLAN push, pop and modify flow
actions.
HWS VLAN push flow action is triggered by a sequence of mandatory
OF_PUSH_VLAN, OF_SET_VLAN_VID and optional OF_SET_VLAN_PCP
flow actions commands.
The commands must be arranged in the exact orde
From: Alexander Kozyrev
Add ability to create an indirect action handle for METER_MARK.
It allows to share one Meter between several different actions.
Signed-off-by: Alexander Kozyrev
---
drivers/net/mlx5/mlx5.c| 4 +-
drivers/net/mlx5/mlx5.h| 33 ++-
drivers/net/ml
From: Michael Baum
Add support for AGE action for HW steering.
This patch includes:
1. Add new structures to manage the aging.
2. Initialize all them in configure function.
3. Implement per second aging check using CNT background thread.
4. Enable AGE action in flow create/destroy operations
The queue based rte_flow_async_action_* functions work same as
queue based async flow functions. The operations can be pushed
asynchronously, so is the pull.
This commit adds the async action missing push and pull support.
Signed-off-by: Suanming Mou
---
drivers/net/mlx5/mlx5.h| 62
From: Gregory Etelson
- Reformat flow integrity item translation for HWS code.
- Support flow integrity bits in HWS group 0.
- Update integrity item translation to match positive semantics only.
Positive flow semantics was described in patch [ae37c0f60c].
Signed-off-by: Gregory Etelson
---
dri
From: Dariusz Sosnowski
This patch introduces
This patch adds support for fdb_def_rule_en device argument to HW
Steering, which controls:
- creation of default FDB jump flow rule,
- ability of the user to create transfer flow rules in root table.
A new PMD API to allow user application to enabl
From: Dariusz Sosnowski
In some E-Switch use cases applications want to receive all traffic
on a single port. Since currently flow API does not provide a way to
match traffic forwarded to any port representor, this patch adds
support for controlling representor matching on ingress flow rules.
Re
> Subject: [PATCH] mem: fix API doc about allocation on secondary processes
>
> Since 10 years, memzone allocation is allowed on secondary processes. Now
> it's time to update the documentation accordingly.
>
> At the same time, fix mempool, mbuf and ring documentation which rely on
> memzones
On Fri, Sep 30, 2022 at 12:05 PM zhoumin wrote:
> On Fri, Sep 30, 2022 at 16:13, David Marchand wrote:
> > On Fri, Sep 30, 2022 at 10:02 AM Min Zhou wrote:
> >>
> >> The online documents of LoongArch architecture are here:
> >> https://loongson.github.io/LoongArch-Documentation/README-EN.htm
> -Original Message-
> From: Kusztal, ArkadiuszX
> Sent: Friday, September 30, 2022 2:06 PM
> To: Akhil Goyal ; dev@dpdk.org
> Cc: Ji, Kai
> Subject: RE: [EXT] [PATCH v2 0/2] cryptodev: add SM3 and SM4 algorithms
>
>
>
> > -Original Message-
> > From: Akhil Goyal
> > Sent:
> ShangMi 4 (SM4) is a block cipher used in the Chinese National Standard for
> Wireless LAN WAPI and also used with Transport Layer Security.
> ShangMi 3 (SM3) is a cryptographic hash function used in the Chinese National
> Standard.
>
> This patcheset adds both to the Intel QuickAssist Technolog
> Add option to use elliptic curve generator point instead
> of setting it manually. It corresponds to the public point
> generation in EC Diffie-Hellman key exchange.
>
The title talks about adding an option to use EC base point in ECPM
But the description and code changes does not match.
Can
> Acked-by: Kai Ji
>
> > Add enumeration in EC xform for FPM. Crypto driver would need this to
> > xform point multiplication based on given type of EC curve.
> >
> > Signed-off-by: Kiran Kumar K
> > Signed-off-by: Gowrishankar Muthukrishnan
> > ---
This patch is applied to dpdk-next-crypto a
> On Thu, Sep 29, 2022 at 6:08 PM Amit Prakash Shukla
> wrote:
> >
> > Add trace points for cryptodev functions.
> >
> > Signed-off-by: Amit Prakash Shukla
>
> Looks good from tracing PoV.
>
> Reviewed-by: Jerin Jacob
Acked-by: Akhil Goyal
Applied to dpdk-next-crypto
Thanks.
v10: replacing the _PADDED_MAX enum to _SIZE_MAX macro based on suggestion from
Ferruh/Maxime/Akhil. Thanks
v9: removing code snippet from documentation in 5/7 requested by Akhil. Thanks.
v8: edit based on review by Akhil : typos, coding guidelines. No functional
change. Thanks
v7: couple of typ
Updating the enum for rte_bbdev_op_type
to allow to keep ABI compatible for enum insertion
while adding padded maximum value for array need.
Removing RTE_BBDEV_OP_TYPE_COUNT and instead exposing
RTE_BBDEV_OP_TYPE_SIZE_MAX.
Signed-off-by: Nicolas Chautru
Acked-by: Maxime Coquelin
---
app/test-bb
Added device status information, so that the PMD can
expose information related to the underlying accelerator device status.
Minor order change in structure to fit into padding hole.
Signed-off-by: Nicolas Chautru
Acked-by: Mingshan Zhang
Acked-by: Hemant Agrawal
---
drivers/baseband/acc100/rt
Adding more options in the API to expose the number
of queues exposed and related priority.
Signed-off-by: Nicolas Chautru
Acked-by: Maxime Coquelin
---
lib/bbdev/rte_bbdev.h | 4
1 file changed, 4 insertions(+)
diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h
index 5ba7a61ded..
Add support in existing bbdev PMDs for the explicit number of queues
and priority for each operation type configured on the device.
Signed-off-by: Nicolas Chautru
Acked-by: Maxime Coquelin
Acked-by: Hemant Agrawal
---
drivers/baseband/acc100/rte_acc100_pmd.c | 29 +++
.../
Extension of bbdev operation to support FFT based operations.
Signed-off-by: Nicolas Chautru
Acked-by: Hemant Agrawal
Acked-by: Maxime Coquelin
---
doc/guides/prog_guide/bbdev.rst | 103 ++
lib/bbdev/rte_bbdev.c | 10 ++-
lib/bbdev/rte_bbdev.h | 76 +++
This allows to expose more information with regards to any
queue related failure and warning which cannot be supported
in existing API.
Signed-off-by: Nicolas Chautru
Acked-by: Maxime Coquelin
---
app/test-bbdev/test_bbdev_perf.c | 2 ++
lib/bbdev/rte_bbdev.c| 19 +++
l
Code clean up due to if-check not required
Signed-off-by: Nicolas Chautru
Acked-by: Maxime Coquelin
---
lib/bbdev/rte_bbdev_op.h | 24
1 file changed, 4 insertions(+), 20 deletions(-)
diff --git a/lib/bbdev/rte_bbdev_op.h b/lib/bbdev/rte_bbdev_op.h
index 73677188ab..c0
> On Thu, Sep 29, 2022 at 2:05 PM Olivier Matz wrote:
> >
> > The CDEV_LOG_* macros already add a '\n' at the end of
> > the line. Remove it from format strings to avoid duplicated
> > newlines.
> >
> > Signed-off-by: Olivier Matz
>
> I had the exact same patch in store :-).
> We may want to bac
> > 24/06/2022 14:12, Srujana Challa:
> > > Adds a return parameter "uint16_t qp_id" to the functions
> > > rte_cryptodev_pmd_callback_process and rte_cryptodev_cb_fn.
> > > The new parameter is used to return queue pair ID to the application
> > > when it gets error interrupt, so that application
> v10: replacing the _PADDED_MAX enum to _SIZE_MAX macro based on
> suggestion from Ferruh/Maxime/Akhil. Thanks
Since we have a consensus.
Series Acked-by: Akhil Goyal
Applied to dpdk-next-crypto
Added release notes and removed deprecation notices.
Please fix the documentation as recommended as
On 2022-09-21 11:05, Bruce Richardson wrote:
On Wed, Sep 21, 2022 at 10:39:15AM +0200, Mattias Rönnblom wrote:
I have some lcore-related questions:
The documentation make use of the term "non-EAL thread". Is a non-EAL thread
the same thing as a non-lcore thread? I.e., are there EAL threads that
On 2022-09-14 11:29, Kevin Laatz wrote:
From: Anatoly Burakov
Currently, there is no way to measure lcore poll busyness in a passive way,
without any modifications to the application. This patch adds a new EAL API
that will be able to passively track core polling busyness.
I think it's more f
On 2022-09-14 11:29, Kevin Laatz wrote:
Add API unit tests and perf unit tests for the newly added lcore poll
busyness feature.
Signed-off-by: Kevin Laatz
---
app/test/meson.build | 4 +
app/test/test_lcore_poll_busyness_api.c | 134 +++
app/tes
1 - 100 of 105 matches
Mail list logo