RE: 21.11.2 patches review and test

2022-08-16 Thread Ali Alnubani
> -Original Message- > From: Ali Alnubani > Sent: Thursday, July 28, 2022 3:49 PM > To: Luca Boccassi ; sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > benjamin.wal...@intel.com; David Christensen ; > Hemant Agrawal ; Ian Stokes > ; Jerin Jacob ; John McNamara > ; Ju-Hyoung Lee ;

Re: [PATCH] build: enable developer mode for all working trees

2022-08-16 Thread Ferruh Yigit
On 8/10/2022 8:26 PM, Stephen Hemminger wrote: On Wed, 10 Aug 2022 20:40:58 +0300 Dmitry Kozlyuk wrote: Developer mode was detected if `.git` was a directory. Linked git working trees created by `git worktree add` contain `.git` file instead of `.git` directory. Developer mode was not detected

Re: [PATCH 1/2] member: implement NitroSketch mode

2022-08-16 Thread Ferruh Yigit
On 8/10/2022 8:45 AM, Leyi Rong wrote: Sketching algorithm provide high-fidelity approximate measurements and appears as a promising alternative to traditional approches such as packet sampling. NitroSketch [1] is a software sketching framework that optimizes performance, provides accuracy guara

RE: [PATCH] net/iavf: fix processing vlan tci in vector path

2022-08-16 Thread Rong, Leyi
Hi Zhichao, The "vector" in the subject and commit log should be revised to "SSE" with a more accurate expression. For the code part, see below. > -Original Message- > From: Zeng, ZhichaoX > Sent: Friday, July 22, 2022 5:30 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Yang, Qiming ; Z

Re: [PATCH v2] app/testpmd: add throughput stats for forward streams

2022-08-16 Thread Ferruh Yigit
On 8/11/2022 7:57 AM, Guo, Junfeng wrote: -Original Message- From: Singh, Aman Deep Sent: Friday, June 17, 2022 00:40 To: Guo, Junfeng ; Zhang, Qi Z ; Wu, Jingjing ; Xing, Beilei Cc: dev@dpdk.org; Wang, Xiao W Subject: Re: [PATCH v2] app/testpmd: add throughput stats for forward str

Re: [RFC] ethdev: add send to kernel action

2022-08-16 Thread Ferruh Yigit
On 8/11/2022 12:35 PM, Michael Savisko wrote: CAUTION: This message has originated from an External Source. Please use proper judgment and caution when opening attachments, clicking links, or responding to this email. In some cases application may receive a packet that should have been receiv

Re: 21.11.2 patches review and test

2022-08-16 Thread Luca Boccassi
On Tue, 2022-08-16 at 07:33 +, Ali Alnubani wrote: > > -Original Message- > > From: Ali Alnubani > > Sent: Thursday, July 28, 2022 3:49 PM > > To: Luca Boccassi ; sta...@dpdk.org > > Cc: dev@dpdk.org; Abhishek Marathe > > ; > > benjamin.wal...@intel.com; David Christensen > > ; > > Hem

[PATCH] net/octeon_ep: add octeon CN10K support

2022-08-16 Thread Sathesh Edara
Added Octeon CN10K EP PMD functionality. Signed-off-by: Sathesh Edara --- This patch depends on https://patches.dpdk.org/project/dpdk/list/?series=24103 drivers/net/octeon_ep/cnxk_ep_vf.c| 370 ++ drivers/net/octeon_ep/cnxk_ep_vf.h| 161 +++ drivers/net/

Re: 21.11.2 patches review and test

2022-08-16 Thread Luca Boccassi
On Thu, 2022-08-04 at 07:28 +, Jiang, YuX wrote: > > -Original Message- > > From: Jiang, YuX > > Sent: Tuesday, August 2, 2022 6:15 PM > > To: Luca Boccassi ; sta...@dpdk.org > > Cc: dev@dpdk.org; Walker, Benjamin ; > > Raslan > > Darawsheh ; Thomas Monjalon > > ; yangh...@redhat.com >

Re: [dpdk-dev] [RFC PATCH 0/1] mldev: introduce machine learning device library

2022-08-16 Thread Jerin Jacob
On Wed, Aug 3, 2022 at 8:49 PM Stephen Hemminger wrote: > > On Wed, 3 Aug 2022 18:58:37 +0530 > wrote: > > > Roadmap > > --- > > 1) Address the comments for this RFC. > > 2) Common code for mldev > > 3) SW mldev driver based on TVM (https://tvm.apache.org/) > > Having a SW implementation is i

[PATCH] event/cnxk: add preliminary Tx queue depth check

2022-08-16 Thread pbhagavatula
From: Pavan Nikhilesh add preliminary Tx queue depth check and return on failure. Once the check passes, tx_adapter_enqueue() function becomes a blocking call till it succeeds. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_worker.h | 5 + 1 file changed, 5 insertions(+) diff

RE: [dpdk-dev] [RFC PATCH 0/1] mldev: introduce machine learning device library

2022-08-16 Thread Morten Brørup
> From: Jerin Jacob [mailto:jerinjac...@gmail.com] > Sent: Tuesday, 16 August 2022 15.13 > > On Wed, Aug 3, 2022 at 8:49 PM Stephen Hemminger > wrote: > > > > On Wed, 3 Aug 2022 18:58:37 +0530 > > wrote: > > > > > Roadmap > > > --- > > > 1) Address the comments for this RFC. > > > 2) Common

[PATCH 1/3] eventdev: add element offset to event vector

2022-08-16 Thread pbhagavatula
From: Pavan Nikhilesh Add ``elem_offset:12`` bit field event vector structure the bits are taken from ``rsvd:15``. The element offset defines the offset into the vector array at which valid elements start. The valid elements count will be equal to nb_elem - elem_offset. Update Rx/Tx adapter SW i

[PATCH 2/3] examples: update event vector free routine

2022-08-16 Thread pbhagavatula
From: Pavan Nikhilesh Update event vector free routine to account for element offset while freeing elements. Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_pipeline_common.c | 5 +++-- examples/l2fwd-event/l2fwd_common.c | 5 +++-- examples/l3fwd/l3fwd_event.c | 5 +

[PATCH 3/3] event/cnxk: update event vector Tx routine

2022-08-16 Thread pbhagavatula
From: Pavan Nikhilesh Update event vector transmit routine to honor elem_offset. Use ``rte_event_vector::elem_offset`` to report partial vector transmission to the application when there is not enough space in the SQ. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_worker.h | 100 +

RE: [EXT] [PATCH 0/2] IPsec on Arm

2022-08-16 Thread Akhil Goyal
Hi Fan/Pablo, Do you have comments on this patchset? > This patch set integrates Arm port of ipsec_mb library. > ZUC and SNOW3g PMDs are available on Arm platform with this integration. > > This series depends on: > http://patches.dpdk.org/project/dpdk/patch/20220630154123.2565439-1-asek...@marv

RE: [EXT] Re: [PATCH] crypto/ccp: Check for the NULL pointer after calling rte_malloc

2022-08-16 Thread Akhil Goyal
Hi, Could you please reply to David and Stephen's comments? Regards, Akhil > On Wed, Jul 20, 2022 at 8:29 AM Namburu, Chandu-babu > wrote: > > From: Shiqi Liu <835703...@qq.com> > > > > As the possible failure of the rte_malloc(), the not_checked and checked > > could > be NULL pointer. > > Ther

RE: [PATCH v2 2/2] app/test: invoke all telemetry commands

2022-08-16 Thread Power, Ciara
> -Original Message- > From: David Marchand > Sent: Friday 29 July 2022 13:43 > To: dev@dpdk.org > Cc: Chengwen Feng ; Aaron Conole > ; Michael Santana ; > Power, Ciara > Subject: [PATCH v2 2/2] app/test: invoke all telemetry commands > > Try and call all possible telemetry commands.

RE: [dpdk-dev] [RFC PATCH 0/1] mldev: introduce machine learning device library

2022-08-16 Thread Honnappa Nagarahalli
> > From: Jerin Jacob [mailto:jerinjac...@gmail.com] > > Sent: Tuesday, 16 August 2022 15.13 > > > > On Wed, Aug 3, 2022 at 8:49 PM Stephen Hemminger > > wrote: > > > > > > On Wed, 3 Aug 2022 18:58:37 +0530 > > > wrote: > > > > > > > Roadmap > > > > --- > > > > 1) Address the comments for t

Re: [PATCH v1 00/33] baseband/acc100: changes for 22.11

2022-08-16 Thread Tom Rix
On 8/15/22 10:52 PM, Hernan Vargas wrote: Upstreaming ACC100 changes for 22.11. This patch series is dependant on series: https://patches.dpdk.org/project/dpdk/patch/1657150110-69957 Can you go into some more detail about these changes ? Ex/ which are the fixes and which are the features ?

Re: [RFC] Dynamic log/trace control via telemetry

2022-08-16 Thread Stephen Hemminger
On Tue, 16 Aug 2022 02:17:38 +0300 Dmitry Kozlyuk wrote: > When debugging a live app, useful info can be obtained from logs or traces > that were not enabled when it was started and it is undesirable to restart. > Furthermore, unless the app authors have considered tracing, > rte_trace_save() is

RE: 20.11.6 patches review and test

2022-08-16 Thread Jiang, YuX
> -Original Message- > From: Xueming Li > Sent: Monday, August 15, 2022 5:17 PM > To: sta...@dpdk.org > Cc: xuemi...@nvidia.com; dev@dpdk.org; Abhishek Marathe > ; Ali Alnubani ; > Walker, Benjamin ; David Christensen > ; Hemant Agrawal ; > Stokes, Ian ; Jerin Jacob ; > Mcnamara, John ; Ju

[Bug 1067] I40E_VSI_TO_ETH_DEV (rxq->vsi) return null causes coredump

2022-08-16 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1067 Bug ID: 1067 Summary: I40E_VSI_TO_ETH_DEV (rxq->vsi) return null causes coredump Product: DPDK Version: 20.11 Hardware: All OS: All Status: UNCONFIRMED

Re: [dpdk-dev] [RFC PATCH 0/1] mldev: introduce machine learning device library

2022-08-16 Thread Jerin Jacob
On Tue, Aug 16, 2022 at 9:15 PM Morten Brørup wrote: > > > From: Jerin Jacob [mailto:jerinjac...@gmail.com] > > Sent: Tuesday, 16 August 2022 15.13 > > > > On Wed, Aug 3, 2022 at 8:49 PM Stephen Hemminger > > wrote: > > > > > > On Wed, 3 Aug 2022 18:58:37 +0530 > > > wrote: > > > > > > > Roadma

RE: 20.11.6 patches review and test

2022-08-16 Thread Xueming(Steven) Li
> -Original Message- > From: Jiang, YuX > Sent: Wednesday, August 17, 2022 11:23 AM > To: Xueming(Steven) Li ; sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; Ali > Alnubani ; Walker, Benjamin > ; David Christensen ; > Hemant Agrawal ; Stokes, Ian > ; Jerin Jacob ; Mcnamara, Joh

[PATCH] net/mlx5: fix single not inline packet elts storing

2022-08-16 Thread Viacheslav Ovsiienko
The mlx5 PMD can inline packet data into transmitting descriptor (WQE) and free mbuf immediately as data no longer needed, for non-inline packets the mbuf pointer should be stored in elts array for coming freeing on send completion. There was an optimization on storing pointers in batch and there w

RE: [dpdk-dev] [RFC PATCH 0/1] mldev: introduce machine learning device library

2022-08-16 Thread Morten Brørup
> From: Jerin Jacob [mailto:jerinjac...@gmail.com] > Sent: Wednesday, 17 August 2022 07.37 > > On Tue, Aug 16, 2022 at 9:15 PM Morten Brørup > wrote: > > > > > From: Jerin Jacob [mailto:jerinjac...@gmail.com] > > > Sent: Tuesday, 16 August 2022 15.13 > > > > > > On Wed, Aug 3, 2022 at 8:49 PM Ste