[PATCH] vhost: fix physical address mapping

2021-12-13 Thread xuan . ding
From: Xuan Ding When choosing IOVA as PA mode, IOVA is likely to be discontinuous, which requires page by page mapping for DMA devices. To be consistent, this patch implements page by page mapping instead of mapping at the region granularity for both IOVA as VA and PA mode. Fixes: 7c61fa08b716 (

RE: [RFC] cryptodev: asymmetric crypto random number source

2021-12-13 Thread Akhil Goyal
++Ram for openssl ECDSA op: rte_crypto_param k; /**< The ECDSA per-message secret number, which is an integer * in the interval (1, n-1) */ DSA op: No 'k'. This one I think have described some time ago: Only PMD that verifies ECDSA is OC

[PATCH v3 00/10] Add cnxk_gpio PMD

2021-12-13 Thread Tomasz Duszynski
This series introduces a new rawdevice PMD which allows to manage userspace GPIOs and install custom GPIO interrupt handlers which bypass kernel. This is especially useful for applications that, besides providing standard dataplane functionality, want to have fast and low latency access to GPIO pin

[PATCH v3 01/10] raw/cnxk_gpio: add GPIO driver skeleton

2021-12-13 Thread Tomasz Duszynski
Add initial support for PMD that allows to control particular pins form userspace. Moreover PMD allows to attach custom interrupt handlers to controllable GPIOs. Main users of this PMD are dataplain applications requiring fast and low latency access to pin state. Signed-off-by: Tomasz Duszynski

[PATCH v3 02/10] raw/cnxk_gpio: support reading default queue conf

2021-12-13 Thread Tomasz Duszynski
Add support for reading default queue configuration. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index bcce4b8fb7..deedf98af2

[PATCH v3 03/10] raw/cnxk_gpio: support reading queue count

2021-12-13 Thread Tomasz Duszynski
Add support for reading number of available queues. Single queue corresponds to GPIO. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index de

[PATCH v3 04/10] raw/cnxk_gpio: support queue setup

2021-12-13 Thread Tomasz Duszynski
Add support for queue setup. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 80 +++ 1 file changed, 80 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index 84be7f861e..98b5dd9cd8 100644 --- a

[PATCH v3 05/10] raw/cnxk_gpio: support queue release

2021-12-13 Thread Tomasz Duszynski
Add support for queue release. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 34 +++ 1 file changed, 34 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index 98b5dd9cd8..8ac3c5e1be 100644 ---

[PATCH v3 06/10] raw/cnxk_gpio: support enqueuing buffers

2021-12-13 Thread Tomasz Duszynski
Add dummy support for enqueuing buffers. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 46 +++ drivers/raw/cnxk_gpio/cnxk_gpio.h | 1 + drivers/raw/cnxk_gpio/meson.build | 1 + drivers/raw/cnxk_gpio/rte_pmd_cnxk_gpio.h | 38

[PATCH v3 07/10] raw/cnxk_gpio: support dequeuing buffers

2021-12-13 Thread Tomasz Duszynski
Add support for dequeuing buffers. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 26 ++ 1 file changed, 26 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index 9477e7293a..570d9abb17 100644 ---

[PATCH v3 08/10] raw/cnxk_gpio: support standard GPIO operations

2021-12-13 Thread Tomasz Duszynski
Add support for standard GPIO operations i.e ones normally provided by GPIO sysfs interface. Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_gpio.rst | 98 drivers/raw/cnxk_gpio/cnxk_gpio.c | 146 +++ drivers/raw/cnxk_gpio/rte_pmd_cnxk_gpio.h | 279

[PATCH v3 09/10] raw/cnxk_gpio: support custom irq handlers

2021-12-13 Thread Tomasz Duszynski
Add support for custom interrupt handlers. Custom interrupt handlers bypass kernel completely and are meant for fast and low latency access to GPIO state. Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_gpio.rst | 21 +++ drivers/raw/cnxk_gpio/cnxk_gpio.c | 37

[PATCH v3 10/10] raw/cnxk_gpio: support selftest

2021-12-13 Thread Tomasz Duszynski
Add support for performing selftest. Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_gpio.rst | 11 + drivers/raw/cnxk_gpio/cnxk_gpio.c | 1 + drivers/raw/cnxk_gpio/cnxk_gpio.h | 2 + drivers/raw/cnxk_gpio/cnxk_gpio_selftest.c | 386 ++

[PATCH 2/8] net/cnxk: add CN9K template Rx functions to build

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add CN9K seggeregated Rx and event dequeue functions to build, add macros to make future modifications simpler. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn9k_eventdev.c| 229 + drivers/event/cnxk/cn9k_worker.h | 143 +- dr

[PATCH 3/8] net/cnxk: add CN9K segregated Tx functions

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add CN9K segregated Rx and event Tx enqueue template functions, these help in parallelizing the build. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/tx/cn9k/tx_0_15.c | 10 ++ drivers/event/cnxk/tx/cn9k/tx_0_15_dual.c| 11 +++ d

[PATCH 4/8] net/cnxk: add CN9K template Tx functions to build

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add CN9K segregated Tx and event Tx functions to build, add macros to make future modifications simpler. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn9k_eventdev.c| 29 +- drivers/event/cnxk/cn9k_worker.h | 62 ++- drivers/event/cnxk/

[PATCH 5/8] net/cnxk: add CN10K segregated Rx functions

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add CN10K segregated Rx and event dequeue template functions, these help in parallelizing the build. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/deq/cn10k/deq_0_15.c| 12 drivers/event/cnxk/deq/cn10k/deq_0_15_burst.c | 14 ++

[PATCH 6/8] net/cnxk: add CN10K template Rx functions to build

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add CN10K segregated Rx and event dequeue functions to build, add macros to make future modifications simpler. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_eventdev.c | 114 +++-- drivers/event/cnxk/cn10k_worker.h | 71 ++- drivers/event/

[PATCH 7/8] net/cnxk: add CN10K segregated Tx functions

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add CN10K segregated Rx and event Tx enqueue template functions, these help in parallelizing the build. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/tx/cn10k/tx_0_15.c | 10 ++ drivers/event/cnxk/tx/cn10k/tx_0_15_seg.c | 11 +++ dr

[PATCH 8/8] net/cnxk: add CN10K template Tx functions to build

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add CN10K segregated Tx and event Tx template functions to build, add macros to make future modifications simpler. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_eventdev.c | 19 +- drivers/event/cnxk/cn10k_worker.h| 36 +- drivers/even

[PATCH] eventdev: fix missing internal port checks

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh When event delivery is through internal port, stats are mainitained by HW and we should avoid reading SW data structures for stats. Fix missing internal port checks. Fixes: 995b150c1ae1 ("eventdev/eth_rx: add queue stats API") Signed-off-by: Pavan Nikhilesh --- lib/event

[PATCH] vhost: rename field in guest page struct

2021-12-13 Thread xuan . ding
From: Xuan Ding This patch renames the host_phys_addr to host_iova in guest_page struct. The host_phys_addr is iova, it depends on the DPDK IOVA mode. Signed-off-by: Xuan Ding --- lib/vhost/vhost.h | 10 +- lib/vhost/vhost_user.c | 24 lib/vhost/virtio_net

[Bug 904] [dpdk-19.11.11] Meson build has some failures on Fedora35 with clang 13.0.0

2021-12-13 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=904 Bug ID: 904 Summary: [dpdk-19.11.11] Meson build has some failures on Fedora35 with clang 13.0.0 Product: DPDK Version: 19.11 Hardware: All OS: All Statu

RE: [RFC] cryptodev: asymmetric crypto random number source

2021-12-13 Thread Ramkumar Balu
> ++Ram for openssl > > > ECDSA op: > >rte_crypto_param k; > >   /**< The ECDSA per-message secret number, which is an integer > >   * in the interval (1, n-1) > >   */ > > DSA op: > >   No 'k'. > > > > This one I think have describe

RE: [RFC] Cryptodev: use rte_crypto_vec, group big-endian constraints

2021-12-13 Thread Akhil Goyal
Hi, since DPDK 21.11 is out, we should start discussion to make asymmetric API stable. - Struct rte_crypto_vec vs struct rte_crypto_param_t We have two almost identical functionally structs, one in _sym.h another in asym.h so we probably should pick one of them. "rte_crypto_vec" a

[PATCH] config/cn10k: align mempool elements to 128 bytes

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Mempool elements are by default aligned to CACHELINE_SIZE. In CN10K cacheline size is 64B but the RoC requires buffers to be aligned to 128B. Set RTE_MEMPOOL_ALIGN to 128 to force mempool buffers to be aligned 128 bytes. Signed-off-by: Pavan Nikhilesh --- config/arm/meson

Re: 19.11.11 patches review and test

2021-12-13 Thread Ferruh Yigit
On 12/13/2021 4:14 AM, Kalesh Anakkur Purayil wrote: Hi Christian, We still see KNI build failure on SLES15 SP3 with dpdk-stable-19.11.11-rc1. Is there a plan to address that on 19.11.11 LTS? Hi Kalesh, I have sent a backport patch for 20.11, can you please check if it fixes the build for t

[PATCH v5 1/2] event/cnxk: update min interval calculation

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Minimum supported interval should now be retrieved from mailbox based on the clock source and clock frequency. Signed-off-by: Pavan Nikhilesh --- v5: - Rebase on master. v4: - Rebase on master, fix NULL checks. v3: - Add new mbox interface. v2: - Fixed devargs parsing and

[PATCH v5 2/2] event/cnxk: add external clock support for timer

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add external clock support for cnxk timer adapter. External clock mapping is as follows: RTE_EVENT_TIMER_ADAPTER_EXT_CLK0 = TIM_CLK_SRC_10NS, RTE_EVENT_TIMER_ADAPTER_EXT_CLK1 = TIM_CLK_SRC_GPIO, RTE_EVENT_TIMER_ADAPTER_EXT_CLK2 = TIM_CLK_SRC_PTP, RTE_EVENT_TIMER_ADAPTER_EXT

dev@dpdk.org

2021-12-13 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=905 Bug ID: 905 Summary: [dpdk-19.11.11-rc1]Meson&Makefile build failed on Freebsd13 with gcc10.3.0&clang11.0.1 Product: DPDK Version: 19.11 Hardware: All OS: All

Re: 19.11.11 patches review and test

2021-12-13 Thread Christian Ehrhardt
On Mon, Dec 13, 2021 at 12:06 PM Ferruh Yigit wrote: > > On 12/13/2021 4:14 AM, Kalesh Anakkur Purayil wrote: > > Hi Christian, > > > > We still see KNI build failure on SLES15 SP3 with dpdk-stable-19.11.11-rc1. > > Is there a plan to address that on 19.11.11 LTS? > > > > Hi Kalesh, > > I have se

Re: 19.11.11 patches review and test

2021-12-13 Thread Ferruh Yigit
On 12/13/2021 12:39 PM, Christian Ehrhardt wrote: On Mon, Dec 13, 2021 at 12:06 PM Ferruh Yigit wrote: On 12/13/2021 4:14 AM, Kalesh Anakkur Purayil wrote: Hi Christian, We still see KNI build failure on SLES15 SP3 with dpdk-stable-19.11.11-rc1. Is there a plan to address that on 19.11.11 L

Re: 19.11.11 patches review and test

2021-12-13 Thread Christian Ehrhardt
On Mon, Dec 13, 2021 at 1:59 PM Ferruh Yigit wrote: > > On 12/13/2021 12:39 PM, Christian Ehrhardt wrote: > > On Mon, Dec 13, 2021 at 12:06 PM Ferruh Yigit > > wrote: > >> > >> On 12/13/2021 4:14 AM, Kalesh Anakkur Purayil wrote: > >>> Hi Christian, > >>> > >>> We still see KNI build failure on

Re: 19.11.11 patches review and test

2021-12-13 Thread Kalesh Anakkur Purayil
Hi Christian/Ferruh, On Mon, 13 Dec 2021 at 7:03 PM, Christian Ehrhardt < christian.ehrha...@canonical.com> wrote: > On Mon, Dec 13, 2021 at 1:59 PM Ferruh Yigit > wrote: > > > > On 12/13/2021 12:39 PM, Christian Ehrhardt wrote: > > > On Mon, Dec 13, 2021 at 12:06 PM Ferruh Yigit > wrote: > > >

Re: 19.11.11 patches review and test

2021-12-13 Thread Ferruh Yigit
On 12/13/2021 1:49 PM, Kalesh Anakkur Purayil wrote: Hi Christian/Ferruh, On Mon, 13 Dec 2021 at 7:03 PM, Christian Ehrhardt mailto:christian.ehrha...@canonical.com>> wrote: On Mon, Dec 13, 2021 at 1:59 PM Ferruh Yigit mailto:ferruh.yi...@intel.com>> wrote: > > On 12/13/2021 12:39

Re: 20.11.4 patches review and test

2021-12-13 Thread Pei Zhang
Hello Xueming, The testing with dpdk 20.11.4-rc1 from Red Hat looks good. We tested below 20 scenarios and all got PASS on RHEL8: (1)Guest with device assignment(PF) throughput testing(1G hugepage size): PASS (2)Guest with device assignment(PF) throughput testing(2M hugepage size) : PASS (3)Guest

[PATCH] crypto: use single buffer for asymmetric session

2021-12-13 Thread Ciara Power
Rather than using a session buffer that contains pointers to private session data elsewhere, have a single session buffer. This session is created for a driver ID, and the mempool element contains space for the max session private data needed for any driver. Signed-off-by: Ciara Power --- Hiding

RE: dev Digest, Vol 381, Issue 38

2021-12-13 Thread McDaniel, Timothy
> -Original Message- > From: dev-requ...@dpdk.org > Sent: Tuesday, December 7, 2021 7:51 PM > To: dev@dpdk.org > Subject: dev Digest, Vol 381, Issue 38 > > Send dev mailing list submissions to > dev@dpdk.org > > To subscribe or unsubscribe via the World Wide Web, visit > h

RE: [EXT] [PATCH] crypto: use single buffer for asymmetric session

2021-12-13 Thread Anoob Joseph
Hi Ciara, +1 to the overall approach. Few comments inline. Thanks, Anoob > -Original Message- > From: Ciara Power > Sent: Monday, December 13, 2021 8:34 PM > To: dev@dpdk.org > Cc: roy.fan.zh...@intel.com; Akhil Goyal ; Ciara > Power ; Declan Doherty > ; Ankur Dwivedi ; > Anoob Joseph ;

[PATCH 1/2] maintainers: fix stable maintainers list

2021-12-13 Thread Kevin Traynor
Christian and Xueming are both already maintaining LTS releases. Update the MAINTAINERS file to reflect this. Cc: sta...@dpdk.org Signed-off-by: Kevin Traynor --- MAINTAINERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 18d9edaf88..84d8e261d5 100644 ---

[PATCH 2/2] doc: update LTS release cadence

2021-12-13 Thread Kevin Traynor
Regular LTS releases have previously aligned to DPDK main branch releases so that fixes being backported have already gone through DPDK main branch release validation. Now that DPDK main branch has moved to 3 releases per year, the LTS releases should continue to align with it and follow a similar

Re: [PATCH v18 8/8] eal: implement functions for mutex management

2021-12-13 Thread Narcisa Ana Maria Vasile
On Wed, Nov 10, 2021 at 05:33:45PM -0800, Narcisa Ana Maria Vasile wrote: > From: Narcisa Vasile > > Add functions for mutex init, destroy, lock, unlock, trylock. > > Windows does not have a static initializer. Initialization > is only done through InitializeCriticalSection(). To overcome this,

[PATCH] event/cnxk: fix qos devargs parsing

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Fix qos devargs parsing using incorrect datatype for the structure elements. Fixes: 38c2e3240ba8 ("event/cnxk: add option to control SSO HWGRP QoS") Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cnxk_eventdev.c | 2 +- drivers/event/cnxk/cnxk_eventdev.h | 6 +++--

[PATCH] common/cnxk: add telemetry endpoints to SSO

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Add common telemetry endpoints for SSO. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/cnxk_telemetry_sso.c | 50 drivers/common/cnxk/meson.build | 4 +- drivers/common/cnxk/roc_idev.c | 20 ++ drivers/common/cn

[PATCH] common/cnxk: add workaround for vWQE flush

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Due to an errata writing to vWQE flush register might hang NIX. Add workaround for vWQE flush hang by waiting for the max coalescing timeout to flush out any pending vWQEs. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/roc_nix_inl.c | 3 +-- drivers/common/

[PATCH] common/cnxk: use XAQ create API for inline device

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Use the XAQ aura create and free API while initializing the inline device. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/roc_nix_debug.c| 4 +- drivers/common/cnxk/roc_nix_inl_dev.c | 53 ++ drivers/common/cnxk/roc_nix_inl_priv.h |

[PATCH 1/4] net/cnxk: avoid command copy from Tx queue

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Tx command is prepared based on offloads enabled and stored in Tx queue structure at tx_queue_setup phase. In fastpath the command is copied from Tx queue to LMT line for all the packets. Since, the command contents are mostly constants we can move the command preparation to

[PATCH 2/4] event/cnxk: store and reuse workslot status

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Store and reuse workslot status for TT, GRP and HEAD status instead of reading from GWC as reading from GWC imposes additional latency. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/roc_sso.h | 11 ++- drivers/event/cnxk/cn10k_worker.h | 17

[PATCH 3/4] event/cnxk: disable default wait time for dequeue

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Setting WAITW bit enables default min dequeue timeout of 1us. Avoid the min dequeue timeout by setting WAITW only when dequeue_timeout is configured. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_eventdev.c | 8 +-- drivers/event/cnxk/cn9k_eventdev.c |

[PATCH 4/4] net/cnxk: improve Rx performance

2021-12-13 Thread pbhagavatula
From: Pavan Nikhilesh Improve vWQE and CQ Rx performance by tuning perfetches to 64B cacheline size. Also, prefetch the vWQE array offsets at cacheline boundaries. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_worker.h | 25 +++-- drivers/net/cnxk/cn10k_rx.h

Re: [PATCH] build/eal: add OS defines for C conditional checks

2021-12-13 Thread Dmitry Kozlyuk
2021-12-10 14:53 (UTC+), Bruce Richardson: [...] Acked-by: Dmitry Kozlyuk with one typo below and some considerations for the future in the bottom. > +Defines to Avoid Conditional Compilation > + > + > +In many cases in DPDK, one wants to optionally co

[PATCH] ring: fix overflow in memory size calcuation

2021-12-13 Thread Zhihong Wang
Parameters count and esize are both unsigned int, and their product can legally exceed unsigned int and lead to runtime access violation. Fixes: cc4b218790f6 ("ring: support configurable element size") Cc: sta...@dpdk.org Signed-off-by: Zhihong Wang --- lib/ring/rte_ring.c | 2 +- 1 file change

[PATCH 1/1] net/tap: add a check that Rx/Tx have the same num of queues

2021-12-13 Thread Nobuhiro MIKI
Users can create the desired number of RxQ and TxQ in DPDK. For example, if the number of RxQ = 2 and the number of TxQ = 5, a total of 8 file descriptors will be created for a tap device, including RxQ, TxQ, and one for keepalive [1]. The RxQ and TxQ with the same ID are paired by dup(2) [2]. In

Re: 19.11.11 patches review and test

2021-12-13 Thread Kalesh Anakkur Purayil
On Mon, Dec 13, 2021 at 7:42 PM Ferruh Yigit wrote: > On 12/13/2021 1:49 PM, Kalesh Anakkur Purayil wrote: > > Hi Christian/Ferruh, > > > > On Mon, 13 Dec 2021 at 7:03 PM, Christian Ehrhardt < > christian.ehrha...@canonical.com > > wrote: > > > > On Mo

RE: [PATCH] eventdev: fix missing internal port checks

2021-12-13 Thread Jayatheerthan, Jay
@Harish, could you take a look at this please ? -Jay > -Original Message- > From: pbhagavat...@marvell.com > Sent: Monday, December 13, 2021 2:02 PM > To: jer...@marvell.com; Jayatheerthan, Jay > Cc: dev@dpdk.org; Pavan Nikhilesh > Subject: [PATCH] eventdev: fix missing internal port

RE: 19.11.11 patches review and test

2021-12-13 Thread Jiang, YuX
> -Original Message- > From: christian.ehrha...@canonical.com > Sent: Thursday, December 9, 2021 10:43 PM > To: sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > Akhil Goyal ; Ali Alnubani ; > Walker, Benjamin ; David Christensen > ; Govindharajan, Hariprasad > ; Hemant Agrawal > ;

RE: [PATCH v3] net/ixgbe: add vector Rx parameter check

2021-12-13 Thread Wang, Haiyue
> -Original Message- > From: Rong, Leyi > Sent: Monday, December 13, 2021 11:03 > To: Bin Zheng ; dev@dpdk.org > Cc: Wang, Haiyue ; lian...@liangbit.com; > sta...@dpdk.org; jia@intel.com > Subject: RE: [PATCH v3] net/ixgbe: add vector Rx parameter check > > > > -Original Message

Re: 19.11.11 patches review and test

2021-12-13 Thread Christian Ehrhardt
On Tue, Dec 14, 2021 at 6:49 AM Kalesh Anakkur Purayil wrote: [snip] >> > [Kalesh] Yes, i am seeing the same error. I used make command to build >> > dpdk, not meson. >> > The back ported commit you mentioned takes care of meson build only I >> > think. >> > >> >> I see, make build is failing,

Re: 19.11.11 patches review and test

2021-12-13 Thread Christian Ehrhardt
On Tue, Dec 14, 2021 at 8:14 AM Jiang, YuX wrote: > > > -Original Message- > > From: christian.ehrha...@canonical.com > > Sent: Thursday, December 9, 2021 10:43 PM > > To: sta...@dpdk.org > > Cc: dev@dpdk.org; Abhishek Marathe ; > > Akhil Goyal ; Ali Alnubani ; > > Walker, Benjamin ; Davi

[PATCH] mbuf: delete dynamic fields copy in hdr copy

2021-12-13 Thread Gaoxiang Liu
Because dynamic fields are registered by the DPDK application, so it is up to the application to decide whether to copy the value of dynamic fields. So delete dynamic fields copy in __rte_pktmbuf_copy_hdr. It's more flexible for the DPDK application, and is useful for improving performance. Fixes: