Hi Thomas,
I must confess that such compactness is somewhat distinct, and it might
look pretty strange.
But please rest assured that it does not stand for some really special
thing.
So, this occasional finding can be taken with a grain of salt.
Ivan
On 29.06.2019 22:49, Thomas Monjalon wrot
Patch [1] implemented set of header modification actions in MLX PMD,
based on ethdev and testpmd updates included in [2].
This series implements support of additional header modification
actions, in ethdev, testpmd, and MLX5 PMD.
Original work by Xiaoyu Min.
[1] http://patches.dpdk.org/patch/4931
This patch implements additional actions of packet header
modifications.
Add actions:
- INC_TCP_SEQ - Increase sequence number in the outermost TCP header.
- DEC_TCP_SEQ - Decrease sequence number in the outermost TCP header.
- INC_TCP_ACK - Increase acknowledgment number in the outermost TCP
Add actions:
- INC_TCP_SEQ - Increase sequence number in the outermost TCP header.
- DEC_TCP_SEQ - Decrease sequence number in the outermost TCP header.
- INC_TCP_ACK - Increase acknowledgment number in the outermost TCP
header.
- DEC_TCP_ACK - Decrease acknowledgment number in the
Add actions:
- INC_TCP_SEQ - Increase sequence number in the outermost TCP header.
- DEC_TCP_SEQ - Decrease sequence number in the outermost TCP header.
- INC_TCP_ACK - Increase acknowledgment number in the outermost TCP
header.
- DEC_TCP_ACK - Decrease acknowledgment number in the
> -Original Message-
> From: Trahe, Fiona
> Sent: Friday, June 28, 2019 10:58 PM
> To: Shally Verma ; Akhil Goyal ;
> Kusztal, ArkadiuszX ; dev@dpdk.org
> Cc: Trahe, Fiona
> Subject: [EXT] RE: [PATCH] cryptodev: extend api of asymmetric crypto by
> sessionless
>
> External Email
>
>
> -Original Message-
> From: Trahe, Fiona
> Sent: Friday, June 28, 2019 10:25 PM
> To: Kusztal, ArkadiuszX ; Shally Verma
> ; dev@dpdk.org
> Cc: akhil.go...@nxp.com; shally.ve...@caviumnetworks.com; Trahe, Fiona
>
> Subject: RE: [EXT] [PATCH 1/3] cryptodev: rework api of rsa algorithm
> -Original Message-
> From: Tomasz Jozwiak
> Sent: Friday, June 28, 2019 3:56 AM
> To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally
> Verma ; arturx.tryb...@intel.com
> Subject: [EXT] [PATCH v4 2/6] app/test-compress-perf: add ptest command
> line option
>
> Exter
> -Original Message-
> From: Tomasz Jozwiak
> Sent: Friday, June 28, 2019 3:56 AM
> To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally
> Verma ; arturx.tryb...@intel.com
> Subject: [EXT] [PATCH v4 3/6] app/test-compress-perf: add verification test
> case
>
> External
> -Original Message-
> From: Tomasz Jozwiak
> Sent: Friday, June 28, 2019 3:56 AM
> To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally
> Verma ; arturx.tryb...@intel.com
> Subject: [EXT] [PATCH v4 5/6] doc: update dpdk-test-compress-perf
> description
>
> External Em
> -Original Message-
> From: Tomasz Jozwiak
> Sent: Friday, June 28, 2019 3:56 AM
> To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally
> Verma ; arturx.tryb...@intel.com
> Subject: [EXT] [PATCH v4 6/6] app/test-compress-perf: add force process
> termination
>
> Exter
While using ticket lock, cores repeatedly poll the lock variable.
This is replaced by rte_wait_until_equal API.
Running ticketlock_autotest on ThunderX2, with different numbers of cores
and depths of rings, 3%~8% performance gains were measured.
Signed-off-by: Gavin Hu
Reviewed-by: Honnappa Naga
Instead of polling for tail to be updated, use wfe instruction.
50%~70% performance gain was measured by running ring_perf_autotest on
ThunderX2.
Signed-off-by: Gavin Hu
Reviewed-by: Ruifeng Wang
Reviewed-by: Steve Capper
Reviewed-by: Ola Liljedahl
Reviewed-by: Honnappa Nagarahalli
---
lib
DPDK has multiple use cases where the core repeatedly polls a location in
memory. This polling results in many cache and memory transactions.
Arm architecture provides WFE (Wait For Event) instruction, which allows
the cpu core to enter a low power state until woken up by the update to the
memory
The rte_wait_until_equal_xxx APIs abstract the functionality of 'polling
for a memory location to become equal to a given value'.
Signed-off-by: Gavin Hu
Reviewed-by: Ruifeng Wang
Reviewed-by: Steve Capper
Reviewed-by: Ola Liljedahl
Reviewed-by: Honnappa Nagarahalli
---
.../common/include/ar
In acquiring a spinlock, cores repeatedly poll the lock variable.
This is replaced by rte_wait_until_equal API.
20% performance gain was measured by running spinlock_autotest on 14
isolated cores of ThunderX2.
Signed-off-by: Gavin Hu
Reviewed-by: Ruifeng Wang
Reviewed-by: Phil Yang
Reviewed-by
Add the RTE_USE_WFE configuration entry for aarch64, disabled by default.
It can be enabled selectively based on the performance benchmarking.
Signed-off-by: Gavin Hu
Reviewed-by: Ruifeng Wang
Reviewed-by: Steve Capper
Reviewed-by: Honnappa Nagarahalli
---
config/arm/meson.build | 1 +
co
From: Pavan Nikhilesh
Configure event ports based on the underlying event device info rather
than using hardcoded values.
Cc: sta...@dpdk.org
Fixes: 5710e751813e ("app/testeventdev: add order port setup")
Signed-off-by: Pavan Nikhilesh
---
app/test-eventdev/test_order_common.c | 32 ++
From: Pavan Nikhilesh
When producer type is event timer adapter producer lcore checks are
skipped. Since, timer adapter relies on SW to arm timers producer lcore
is essential for its functionality.
Verify producer lcore validity when producer type is event timer
adapter.
Cc: sta...@dpdk.org
Fixe
From: Jerin Jacob
This patchset adds support for OCTEON TX2 ethdev driver.
v2:
# Moved maintainers file to the first patch(Ferruh)
# removed reference to to v19.05(Ferruh)
# Makefile/Meson CFLAGS moved to specific patches(Ferruh)
# Move Documentation updates to specific patches(Ferruh)
# rework
From: Jerin Jacob
add basic PCIe ethdev probe and remove.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
---
drivers/net/octeontx2/Makefile | 8 ++-
drivers/net/octeontx2/meson.build | 14 -
drivers/net/octeontx2/otx2_ethdev.c | 93 +
drive
From: Jerin Jacob
Adding bare minimum PMD library and doc build infrastructure
and claim the maintainership for octeontx2 PMD.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Kiran Kumar K
---
MAINTAINERS | 9 ++
config/common
From: Jerin Jacob
Add basic init and uninit function which includes
attaching LF device to probed PCIe device.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Sunil Kumar Kori
Signed-off-by: Vamsi Attunuru
---
drivers/net/octeontx2/Makefile | 1 +
drivers/n
From: Jerin Jacob
add various devargs command line options supported by
this driver.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Pavan Nikhilesh
Signed-off-by: Kiran Kumar K
Signed-off-by: Vamsi Attunuru
---
doc/guides/nics/octeontx2.rst | 67 +
From: Jerin Jacob
Handle device specific error and ras interrupts.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Harman Kalra
---
drivers/net/octeontx2/Makefile | 1 +
drivers/net/octeontx2/meson.build | 1 +
drivers/net/octeontx2/otx2_ethdev.c
From: Jerin Jacob
Add device information get operation.
Signed-off-by: Jerin Jacob
Signed-off-by: Vamsi Attunuru
Signed-off-by: Harman Kalra
---
doc/guides/nics/features/octeontx2.ini | 4 ++
doc/guides/nics/features/octeontx2_vec.ini | 4 ++
doc/guides/nics/features/octeontx2_vf.ini
From: Jerin Jacob
Add device configure operation. This would call lf_alloc
mailbox to allocate a NIX LF and upon return, AF will
return the attributes for the select LF.
Signed-off-by: Jerin Jacob
Signed-off-by: Vamsi Attunuru
Signed-off-by: Nithin Dabilpuram
---
drivers/net/octeontx2/otx2_e
From: Kiran Kumar K
Add register dump support and mark Registers dump in features.
Signed-off-by: Kiran Kumar K
Signed-off-by: Jerin Jacob
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/octeontx2_vf.ini |
From: Jerin Jacob
Handle queue specific error interrupts.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
---
doc/guides/nics/octeontx2.rst | 1 +
drivers/net/octeontx2/otx2_ethdev.c | 16 +-
drivers/net/octeontx2/otx2_ethdev.h | 9 ++
drivers/net/octeontx2/
From: Jerin Jacob
Add RQ,SQ,CQ context and CQE structure dump utils.
Signed-off-by: Jerin Jacob
Signed-off-by: Vivek Sharma
---
doc/guides/nics/octeontx2.rst | 2 +-
drivers/net/octeontx2/Makefile| 1 +
drivers/net/octeontx2/meson.build | 1 +
drivers/net
From: Vamsi Attunuru
Add link stats related operations and mark respective
items in the documentation.
Signed-off-by: Vamsi Attunuru
Signed-off-by: Nithin Dabilpuram
---
doc/guides/nics/features/octeontx2.ini | 2 +
doc/guides/nics/features/octeontx2_vec.ini | 2 +
doc/guides/nics/fea
From: Kiran Kumar K
Add extended operations and updated the feature list.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vamsi Attunuru
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/octeontx2_vf.ini | 1 +
From: Sunil Kumar Kori
Add unicast MAC filter for PF device and
update the respective feature list.
Signed-off-by: Sunil Kumar Kori
Signed-off-by: Vamsi Attunuru
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/octeontx2
From: Kiran Kumar K
Add basic stat operation and updated the feature list.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vamsi Attunuru
---
doc/guides/nics/features/octeontx2.ini | 2 +
doc/guides/nics/features/octeontx2_vec.ini | 2 +
doc/guides/nics/features/octeontx2_vf.ini | 2 +
From: Vamsi Attunuru
Add promiscuous and allmulticast mode for PF devices and
update the respective feature list.
Signed-off-by: Vamsi Attunuru
Signed-off-by: Sunil Kumar Kori
---
doc/guides/nics/features/octeontx2.ini | 2 +
doc/guides/nics/features/octeontx2_vec.ini | 2 +
doc/guides/
From: Jerin Jacob
Add Tx queue setup and release.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/octeontx2_vf.ini | 1 +
doc/guides/nics/octeont
From: Vamsi Attunuru
Add RSS support and expose RSS related functions
to implement RSS action for rte_flow driver.
Signed-off-by: Vamsi Attunuru
Signed-off-by: Kiran Kumar K
---
doc/guides/nics/features/octeontx2.ini | 4 +
doc/guides/nics/features/octeontx2_vec.ini | 4 +
doc/guides/
From: Nithin Dabilpuram
Add queue start and stop operations. Tx queue needs
to update the flow control value, Which will be
added in sub subsequent patch.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Vamsi Attunuru
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/feat
From: Nithin Dabilpuram
Introduce traffic manager infra and default hierarchy
creation.
Upon ethdev configure, a default hierarchy is
created with one-to-one mapped tm nodes. This topology
will be overridden when user explicitly creates and commits
a new hierarchy using rte_tm interface.
Signed
From: Vamsi Attunuru
setup tx & rx queues with the previous configuration during
port reconfig, it handles cases like port reconfigure without
reconfiguring tx & rx queues.
Signed-off-by: Vamsi Attunuru
Signed-off-by: Nithin Dabilpuram
---
drivers/net/octeontx2/otx2_ethdev.c | 180 +++
From: Jerin Jacob
Add Rx queue setup and release.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Vamsi Attunuru
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/octeontx2_vf.ini |
From: Krzysztof Kanas
Allocate and free shaper/scheduler hardware resources for
nodes of hirearchy levels in sw.
Signed-off-by: Krzysztof Kanas
Signed-off-by: Nithin Dabilpuram
---
drivers/net/octeontx2/otx2_tm.c | 350
1 file changed, 350 insertions(+)
diff
From: Nithin Dabilpuram
This patch sets up and configure hierarchy in hw
nodes. Since all the registers are with RVU AF,
register configuration is also done using mbox
communication.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Krzysztof Kanas
---
drivers/net/octeontx2/otx2_tm.c | 504
From: Jerin Jacob
Add Rx and Tx queue descriptor related operations.
Signed-off-by: Jerin Jacob
Signed-off-by: Kiran Kumar K
---
doc/guides/nics/features/octeontx2.ini | 2 +
doc/guides/nics/features/octeontx2_vec.ini | 2 +
doc/guides/nics/features/octeontx2_vf.ini | 2 +
drivers/net
From: Nithin Dabilpuram
Add Rx and Tx queue info get and pool ops supported
operations.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Kiran Kumar K
---
drivers/net/octeontx2/otx2_ethdev.c | 3 ++
drivers/net/octeontx2/otx2_ethdev.h | 5 +++
drivers/net/octeontx2/otx2_ethdev_ops.c
From: Krzysztof Kanas
This patch enables pkt transmit through traffic manager
hierarchy by clearing software XOFF on the nodes and linking
tx queues to corresponding leaf nodes.
It also adds support to start and stop tx queue using
traffic manager.
Signed-off-by: Krzysztof Kanas
Signed-off-by:
From: Jerin Jacob
The fields from CQE needs to be converted to
ptype and rx ol flags in mbuf. This patch adds
create lookup memory for those items to be
used in Fastpath.
Signed-off-by: Jerin Jacob
Signed-off-by: Kiran Kumar K
Signed-off-by: Harman Kalra
---
doc/guides/nics/features/octeontx
From: Vamsi Attunuru
Add flow control operations and exposed
otx2_nix_update_flow_ctrl_mode() to enable on the
configured mode in dev_start().
Signed-off-by: Vamsi Attunuru
Signed-off-by: Nithin Dabilpuram
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeon
From: Vamsi Attunuru
add module EEPROM dump operation.
Signed-off-by: Vamsi Attunuru
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/octeontx2_vf.ini | 1 +
drivers/net/octeontx2/otx2_ethdev.c| 2 +
d
From: Kiran Kumar K
Adding functionality to parse outer layers from ld to lh.
These will be used parse outer layers L2, L3, L4 and tunnel types.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/Makefile | 1 +
drivers/net/octeontx2/meson.build
From: Kiran Kumar K
Adding support to parse flow actions like drop, count, mark, rss, queue.
On egress side, only drop and count actions were supported.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/otx2_flow_parse.c | 210
1 file
From: Kiran Kumar K
Adding support to parse flow actions like drop, count, mark, rss, queue.
On egress side, only drop and count actions were supported.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/otx2_flow_parse.c | 276
drivers
From: Kiran Kumar K
Adding the initial flow ops like flow_create and flow_validate.
These will be used to alloc and write flow rule to device and
validate the flow rule.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/Makefile| 1 +
drivers/net/octeont
From: Kiran Kumar K
Adding few more flow operations like flow_destroy, flow_isolate
and flow_flush.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/otx2_flow.c | 206 ++
drivers/net/octeontx2/otx2_rx.h | 3 +
2 files changed,
From: Vivek Sharma
Support configuring VLAN offloads for an ethernet device and
dynamic promiscuous mode configuration for VLAN filters where
filters are updated according to promiscuous mode of the device.
Signed-off-by: Vivek Sharma
---
doc/guides/nics/features/octeontx2.ini | 2 +
doc
From: Vivek Sharma
Implement accessory functions needed for VLAN functionality.
Introduce VLAN related structures as well.
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/Makefile | 1 +
drivers/net/octeontx2/meson.build | 1 +
drivers/net/octeontx2/otx2_ethdev.c | 10 ++
dri
From: Vivek Sharma
Connect rte_flow driver ops to ethdev via .filter_ctrl op.
Signed-off-by: Vivek Sharma
Signed-off-by: Kiran Kumar K
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/octeontx2_vf.ini | 1 +
d
From: Kiran Kumar K
Adding the flow init and fini functionality. These will be called from
dev init and will initialize and de-initialize the flow related memory.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/otx2_flow.c | 315 +
From: Vamsi Attunuru
Add firmware version get operation.
Signed-off-by: Vamsi Attunuru
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/octeontx2_vf.ini | 1 +
drivers/net/octeontx2/otx2_ethdev.c| 1 +
From: Kiran Kumar K
Introducing flow infra for octeontx2.
This will be used to maintain rte_flow rules.
Create, destroy, validate, query, flush, isolate flow operations
will be supported.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/otx2_flow.h | 388 +++
From: Harman Kalra
Add remaining PTP configuration/slowpath operations.
Timesync feature is available only for PF devices.
Signed-off-by: Harman Kalra
Signed-off-by: Zyta Szpak
---
doc/guides/nics/features/octeontx2.ini | 2 +
drivers/net/octeontx2/otx2_ethdev.c| 6 ++
drivers/net/oct
From: Vivek Sharma
Implement support for setting VLAN TPID and PVID for Tx packets.
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/otx2_ethdev.c | 2 +
drivers/net/octeontx2/otx2_ethdev.h | 5 +-
drivers/net/octeontx2/otx2_vlan.c | 193
3 files changed
From: Harman Kalra
Add PTP enable and disable operations.
Signed-off-by: Harman Kalra
Signed-off-by: Zyta Szpak
---
doc/guides/nics/octeontx2.rst | 1 +
drivers/net/octeontx2/Makefile | 1 +
drivers/net/octeontx2/meson.build | 1 +
drivers/net/octeontx2/otx2_ethdev.c | 22
From: Kiran Kumar K
Adding mailbox utility functions for rte_flow. These will be used
to alloc, reserve and write the entries to the device on request.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/otx2_flow.h | 6 +
drivers/net/octeontx2/otx2_flow
From: Kiran Kumar K
First pass rte_flow utility functions for octeontx2.
These will be used to communicate with AF driver.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/Makefile | 1 +
drivers/net/octeontx2/meson.build | 1 +
drivers/net
From: Nithin Dabilpuram
Add multi segment version of packet Receive function.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Pavan Nikhilesh
---
doc/guides/nics/features/octeontx2.ini | 2 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/octeontx2_vf.ini |
From: Jerin Jacob
Add Rx burst support.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Pavan Nikhilesh
Signed-off-by: Harman Kalra
---
drivers/net/octeontx2/Makefile | 1 +
drivers/net/octeontx2/meson.build | 2 +-
drivers/net/octeontx2/otx2_ethdev.c |
From: Kiran Kumar K
Adding MCAM utility functions to alloc and write the entries.
These will be used to arrange the flow rules based on priority.
Signed-off-by: Kiran Kumar K
Signed-off-by: Vivek Sharma
---
drivers/net/octeontx2/otx2_flow.h | 6 -
drivers/net/octeontx2/otx2_flow_utils
From: Jerin Jacob
Add vector version of packet Receive function.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
---
doc/guides/nics/octeontx2.rst | 1 +
drivers/net/octeontx2/Makefile| 1 +
drivers/net/octeontx2/meson.build | 2 +
drivers/net/octeontx2/otx2_rx.c |
From: Vivek Sharma
Support setting up VLAN filters so as to allow tagged
packet's reception after VLAN HW Filter offload is enabled.
Signed-off-by: Vivek Sharma
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/features/
From: Nithin Dabilpuram
Add device start operation and update the correct
function pointers for Rx and Tx burst functions.
This patch also update the octeontx2 NIC specific
documentation.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Vamsi Attunuru
Signed-off-by: Jerin Jacob
---
doc/guide
From: Nithin Dabilpuram
Add vector version of packet transmit function.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Pavan Nikhilesh
---
drivers/net/octeontx2/otx2_tx.c | 883 +++-
1 file changed, 882 insertions(+), 1 deletion(-)
diff --git a/drivers/net/octeon
From: Nithin Dabilpuram
Add device stop, close and reset operations.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Vamsi Attunuru
---
drivers/net/octeontx2/otx2_ethdev.c | 75 +
1 file changed, 75 insertions(+)
diff --git a/drivers/net/octeontx2/otx2_ethdev.c
b
From: Harman Kalra
This patch implements rx interrupts feature required for power
saving. These interrupts can be enabled/disabled on demand.
Signed-off-by: Harman Kalra
---
doc/guides/nics/features/octeontx2.ini| 1 +
doc/guides/nics/features/octeontx2_vf.ini | 1 +
doc/guides/nics/oc
From: Jerin Jacob
Add Tx burst support.
Signed-off-by: Jerin Jacob
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Pavan Nikhilesh
Signed-off-by: Harman Kalra
---
doc/guides/nics/features/octeontx2.ini | 5 +
doc/guides/nics/features/octeontx2_vec.ini | 5 +
doc/guides/nics/features
From: Vamsi Attunuru
Add MTU set operation and MTU update feature.
Signed-off-by: Vamsi Attunuru
Signed-off-by: Sunil Kumar Kori
---
doc/guides/nics/features/octeontx2.ini | 1 +
doc/guides/nics/features/octeontx2_vec.ini | 1 +
doc/guides/nics/octeontx2.rst | 1 +
drivers
From: Nithin Dabilpuram
Add multi segment version of packet Transmit function.
Signed-off-by: Nithin Dabilpuram
Signed-off-by: Pavan Nikhilesh
---
drivers/net/octeontx2/otx2_ethdev.h | 4 ++
drivers/net/octeontx2/otx2_tx.c | 58 +
drivers/net/octeontx2/otx2_tx.h |
On Mon, 1 Jul 2019 00:21:12 +0800
Gavin Hu wrote:
> +#ifdef RTE_USE_WFE
> +#define rte_wait_until_equal_relaxed(addr, expected) do {\
> + typeof(*addr) tmp; \
> + if (__builtin_constant_p((expected))) \
> + do { \
> + if (s
On Mon, 1 Jul 2019 00:21:11 +0800
Gavin Hu wrote:
> DPDK has multiple use cases where the core repeatedly polls a location in
> memory. This polling results in many cache and memory transactions.
>
> Arm architecture provides WFE (Wait For Event) instruction, which allows
> the cpu core to ente
Hi Shally,
Thx for the review.
My comments below:
-Original Message-
From: Tomasz Jozwiak
Sent: Friday, June 28, 2019 3:56 AM
To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally
Verma ; arturx.tryb...@intel.com
Subject: [EXT] [PATCH v4 3/6] app/test-compress-perf:
27/06/2019 19:23, Ferruh Yigit:
> On 6/10/2019 7:07 AM, Wei Zhao wrote:
> > There is no need to do such a check when set macsec for ixgbe, and
> > reconfig_device_queueand is also useless. If we do not delete this
> > unnessary code, users have to stop port before enable or disable
> > macsec, then
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 01/10] baseband/turbo_sw: baseband/turbo_sw:
> dependency patch
>
>
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 02/10] baseband/fpga_lte_fec: dependency patch
>
> Not meant for r
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 03/10] bbdev: renaming non-generic LTE specific
> structure
>
> Ren
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 04/10] bbdev: extension of BBDEV API for 5G FEC
>
> Extension to BBD
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 05/10] docs/guides: updating bbdev API for 5GNR
> operations
>
> Th
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 06/10] baseband/turbo_sw: extension of turbosw PMD
> for 5G
>
> Imp
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 07/10] docs/guides: updating building steps for BBDEV
> PMD
>
> Thi
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 08/10] test-bbdev: update of bbdev test-app for 5GNR
>
> Extending
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 09/10] test-bbdev: test vectors for 5GNR verification
>
> Adding LD
> -Original Message-
> From: Chautru, Nicolas
> Sent: Monday 24 June 2019 03:53
> To: akhil.go...@nxp.com; dev@dpdk.org
> Cc: tho...@monjalon.net; Yigit, Ferruh ;
> Mokhtar, Amr ; Chautru, Nicolas
>
> Subject: [PATCH v4 10/10] doc: announce bbdev changes
>
> Update of the release notes
From: Tomasz Jozwiak
Sent: Monday, July 1, 2019 2:33 AM
To: Shally Verma ; dev@dpdk.org; fiona.tr...@intel.com;
arturx.tryb...@intel.com
Subject: Re: [EXT] [PATCH v4 3/6] app/test-compress-perf: add verification test
case
…
+ if (ctx != NULL) {
+ ctx->mem.dev_id = dev_id;
+
Acked-by: Viacheslav Ovsiienko
Thanks
> -Original Message-
> From: dev On Behalf Of Moti Haimovsky
> Sent: Wednesday, June 19, 2019 7:52
> To: Shahaf Shuler
> Cc: dev@dpdk.org; sta...@dpdk.org
> Subject: [dpdk-dev] [PATCH v5 1/2] net/mlx5: fix crashing testpmd on null drv
> opts
>
> ml
> -Original Message-
> From: Hemant Agrawal
> Sent: Thursday, June 27, 2019 3:06 PM
> To: dev@dpdk.org
> Cc: Jerin Jacob Kollanukkaran ; Nipun Gupta
> ; sta...@dpdk.org
> Subject: [EXT] [PATCH] event/dpaa2: fix to return correct value for timeout
> ticks
>
>
> ---
I think we should compromise: keep existing RTE_TEST_PMD_RECORD_CORE_CYCLES
and extend with runtime switch under this build-time option:
#ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
if (record_tx)
.. gather tx related stats...
if (record_rx)
.. gather rx related stats...
#endif
This is very specifi
Main changes:
1. Add support for IPv6 based switch filters
2. Add support for ethertype switch filters
3. fix inner L2 offset in GRE dummy packet
Leyi Rong (3):
net/ice/base: add support for IPv6 based switch filters
net/ice/base: add support for ethertype switch filters
net/ice/base: fix in
The offset for the inner L2 header in the dummy GRE packet
was off by 2 bytes so updated the offset.
Fixes: 423be7ac8951 ("net/ice/base: enable additional switch rules")
Signed-off-by: Paul M Stillwell Jr
Signed-off-by: Leyi Rong
---
drivers/net/ice/base/ice_switch.c | 2 +-
1 file changed, 1
- Add IPv6 switch rule support.
- Add IPv6 training packet.
- Correct name of IPv6 header variable.
- Fix enum values so that they point to the proper
ice_prot_ext_tbl_entry field.
Signed-off-by: Kevin Scott
Signed-off-by: Paul M Stillwell Jr
Signed-off-by: Leyi Rong
---
drivers/net/ice/base
Add protocol definitions for ethertype.
Add ice_ethtype_hdr structure definition into the ice_prot_hdr union.
Add ethtype offsets into the training packet maps.
Signed-off-by: Dan Nowlin
Signed-off-by: Paul M Stillwell Jr
Signed-off-by: Leyi Rong
Tested-by: Wei Zhao
---
drivers/net/ice/base/i
Hi Jack,
I know I acked this patch, but after Dekel patch,
https://patches.dpdk.org/patch/55667/
Where it was decided to remove structures for just one variable,
and simply use the value. I wish if possible that you will also modify this
patch to match this new convention.
Thanks,
Ori Kam
>
1 - 100 of 106 matches
Mail list logo