Hi Thomas,
On Sun, Sep 16, 2018 at 11:39:29AM +0200, Thomas Monjalon wrote:
> 10/09/2018 10:06, Andrew Rybchenko:
> > On 09/10/2018 08:18 AM, David Marchand wrote:
> > > __rte_mbuf_raw_free and __rte_pktmbuf_prefree_seg have been deprecated for
> > > a long time now (early 17.05), are not part of
Will send new version later. Thanks.
> -Original Message-
> From: Yigit, Ferruh
> Sent: Thursday, September 13, 2018 21:27
> To: Li, Xiaoyun ; Xing, Beilei ;
> Zhang, Qi Z
> Cc: dev@dpdk.org; Yang, Zhiyong
> Subject: Re: [dpdk-dev] [PATCH v5] net/i40e: add interface to choose latest
> ve
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Zhao1, Wei
> Sent: Friday, September 14, 2018 2:50 PM
> To: Xing, Beilei ; Lu, Wenzhuo
> Cc: dev@dpdk.org; sta...@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] net/e1000: correct queue number in RSS
> configuration
> -Original Message-
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Luca Boccassi
> Sent: Friday, September 14, 2018 12:26 AM
> To: Richardson, Bruce ; Wu, Jingjing
> ; Lu, Wenzhuo
> Cc: dev@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] net/avf: remove unused variables and label
>
RTE_LIBRTE_I40E_ITR_INTERVAL is not used. So it should also be removed
in config/rte_config.h for meson+ninjia build.
Fixes: 864a800d706d ("net/i40e: remove VF interrupt handler")
Cc: sta...@dpdk.org
Signed-off-by: Qi Zhang
---
config/rte_config.h | 2 --
1 file changed, 2 deletions(-)
diff --
'stats_reset()' callback was missing.
This commit implements the callback by taking a snapshot of the stats
(SNAPSHOT) each time 'stats_reset()' is called.
When getting stats with 'stats_get()', hw stats which always increase reduce
SNAPSHOT stats. That's how we get the "real" stats since the las
From: Adrien Mazarguil
Signed-off-by: Adrien Mazarguil
Reviewed-by: Ferruh Yigit
---
app/test-pmd/config.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 92686a05f..a0f934932 100644
--- a/app/test-pmd/config.c
+++ b/
From: Ferruh Yigit
Comments says "no csum error report support" but there is no check
related csum offloads. Removing the comment.
Signed-off-by: Ferruh Yigit
Acked-by: Qi Zhang
---
drivers/net/i40e/i40e_rxtx_vec_common.h | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/
Fixes: 7cacb05655 ("doc: add generic build instructions for sample apps")
Cc: sta...@dpdk.org
Signed-off-by: Gavin Hu
Reviewed-by: Honnappa Nagarahalli
---
doc/guides/sample_app_ug/compiling.rst | 15 ++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/doc/guides/sampl
Hi,
10/08/2018 17:20, Trahe, Fiona:
> > -/**< Intel(R) QAT Symmetric Crypto PMD device name */
> > +/**< Intel(R) QAT Symmetric Crypto PMD driver name */
> > #define CRYPTODEV_NAME_QAT_SYM_PMD crypto_qat
The comment is above, so the syntax should be /**, not /**<
Do you want me to fix it when pu
From: Hemant Agrawal
This patch fix the undefined reference issue with rte_dpaa2_memsegs
when compiled in shared lib mode with EXTRA_CFLAGS="-g -O0"
Bugzilla ID: 61
Fixes: 365fb925d3b3 ("bus/fslmc: optimize physical to virtual address search")
Cc: sta...@dpdk.org
Reported-by: Keith Wiles
Signe
In update_tail, read ht->tail using __atomic_load.Although the
compiler currently seems to be doing the right thing even without
_atomic_load, we don't want to give the compiler freedom to optimise
what should be an atomic load, it should not be arbitarily moved
around.
Fixes: 39368ebfc6 ("ring: i
Synchronize the load-acquire of the tail and the store-release
within update_tail, the store release ensures all the ring operations,
enqueue or dequeue, are seen by the observers on the other side as soon
as they see the updated tail. The load-acquire is needed here as the
data dependency is not a
In __rte_ring_move_prod_head, move the __atomic_load_n up and out of
the do {} while loop as upon failure the old_head will be updated,
another load is costly and not necessary.
This helps a little on the latency,about 1~5%.
Test result with the patch(two cores):
SP/SC bulk enq/dequeue (size: 8
On Sun, Sep 16, 2018 at 11:14:10AM +0200, Thomas Monjalon wrote:
> 30/08/2018 19:31, Luca Boccassi:
> > On Thu, 2018-08-30 at 18:07 +0100, Bruce Richardson wrote:
> > > For meson builds, the define to enable the symbol version
> > > macros in rte_compat.h was missing. This led to symbols being
> >
In update_tail, read ht->tail using __atomic_load.Although the
compiler currently seems to be doing the right thing even without
_atomic_load, we don't want to give the compiler freedom to optimise
what should be an atomic load, it should not be arbitarily moved
around.
Fixes: 39368ebfc6 ("ring: i
In __rte_ring_move_prod_head, move the __atomic_load_n up and out of
the do {} while loop as upon failure the old_head will be updated,
another load is costly and not necessary.
This helps a little on the latency,about 1~5%.
Test result with the patch(two cores):
SP/SC bulk enq/dequeue (size: 8
Synchronize the load-acquire of the tail and the store-release
within update_tail, the store release ensures all the ring operations,
enqueue or dequeue, are seen by the observers on the other side as soon
as they see the updated tail. The load-acquire is needed here as the
data dependency is not a
For meson builds, the define to enable the symbol version
macros in rte_compat.h was missing. This led to symbols being
omitted from shared objects. For example, checking rte_distributor.so
with objdump and comparing make and meson built versions:
$ objdump -T make-build/lib/librte_distributor.so
On Sun, Sep 16, 2018 at 11:00:24AM +0200, Thomas Monjalon wrote:
> 31/08/2018 13:00, Bruce Richardson:
> > On Fri, Aug 31, 2018 at 11:41:51AM +0100, Luca Boccassi wrote:
> > > They are built by the legacy makefiles but not by Meson.
> > >
> > > Fixes: 8f40ee0734c8 ("eal/x86: get hypervisor name")
On Mon, Sep 17, 2018 at 03:39:32PM +0800, Qi Zhang wrote:
> RTE_LIBRTE_I40E_ITR_INTERVAL is not used. So it should also be removed
> in config/rte_config.h for meson+ninjia build.
>
> Fixes: 864a800d706d ("net/i40e: remove VF interrupt handler")
> Cc: sta...@dpdk.org
>
> Signed-off-by: Qi Zhang
Hi All,
I am really sorry I made a mistake by submitting patches from a wrong branch
and tried to rescue quickly and made another mistake(submitted one more patch
not mine).
Please skip these wrong patches(I already superseded them) and help review the
new 3 patches for rte ring.
Really sorry
Hi,
A little bit of self-advertising:
I recently pushed patches that will make DPDK default to RTE_IOVA_VA when
physical addresses were not explicitly requested and are not available, e.g.
when running as a non-privileged user. It shouldn't cause any conflicts with
the changes you're proposing
17/09/2018 10:18, Bruce Richardson:
> For meson builds, the define to enable the symbol version
> macros in rte_compat.h was missing. This led to symbols being
> omitted from shared objects. For example, checking rte_distributor.so
> with objdump and comparing make and meson built versions:
>
> $
This PMD is built with -Wno-format, which means GCC errors out if
-Wformat-security is used.
Fixes: e940646b20fa ("drivers/net: build Intel NIC PMDs with meson")
Cc: sta...@dpdk.org
Signed-off-by: Luca Boccassi
Acked-by: Bruce Richardson
---
v2: re-arranged flags
v3: added acked-by and cc stabl
They are built by the legacy makefiles but not by Meson.
Fixes: 8f40ee0734c8 ("eal/x86: get hypervisor name")
Cc: sta...@dpdk.org
Signed-off-by: Luca Boccassi
Acked-by: Bruce Richardson
---
v3: added acked-by and cc stable
lib/librte_eal/common/arch/arm/meson.build | 2 +-
lib/librte_eal/comm
This PMD is built with -Wno-format, which means GCC errors out if
-Wformat-security is used.
Fixes: 56bb54ea1bdf ("raw/ifpga/base: add Intel FPGA OPAE share code")
Cc: sta...@dpdk.org
Signed-off-by: Luca Boccassi
Acked-by: Bruce Richardson
---
v2: re-arranged flags
v3: added acked-by and cc sta
Install in $kerneldir/../extra/dpdk. Usually $kerneldir should something
like: /lib/modules/$kver/build, so this directory will match the default
one used by legacy makefiles.
Fixes: a52f4574f798 ("igb_uio: build with meson")
Cc: sta...@dpdk.org
Signed-off-by: Luca Boccassi
Acked-by: Bruce Richa
> -Original Message-
> From: Thomas Monjalon [mailto:tho...@monjalon.net]
> Sent: Monday, September 17, 2018 8:56 AM
> To: Trahe, Fiona ; akhil.go...@nxp.com
> Cc: dev@dpdk.org; De Lara Guarch, Pablo ;
> Jozwiak, TomaszX
>
> Subject: Re: [dpdk-dev] [PATCH] crypto/qat: fix typo
>
> Hi,
On Mon, 2018-09-17 at 09:20 +0100, Bruce Richardson wrote:
> On Sun, Sep 16, 2018 at 11:00:24AM +0200, Thomas Monjalon wrote:
> > 31/08/2018 13:00, Bruce Richardson:
> > > On Fri, Aug 31, 2018 at 11:41:51AM +0100, Luca Boccassi wrote:
> > > > They are built by the legacy makefiles but not by Meson.
On Fri, Sep 14, 2018 at 01:32:36PM +0800, Tiwei Bie wrote:
On Thu, Sep 06, 2018 at 07:19:45PM +0100, Jens Freimann wrote:
Signed-off-by: Jens Freiman
---
drivers/net/virtio/virtio_ethdev.c | 9 +
1 file changed, 9 insertions(+)
diff --git a/drivers/net/virtio/virtio_ethdev.c
b/driver
On behalf of Tomasz (who is out of office) I'd like to attract some
attention of DPDK community to the following list of patch sets:
crypto/mvsam: add new features and fixes
http://patches.dpdk.org/project/dpdk/list/?series=1048
https://mails.dpdk.org/archives/dev/2018-August/thread.html#110133
c
Update the ixgbe base code to version cid-ixgbe.2018.08.28.tar.gz.
Xiaoyun Li (7):
net/ixgbe/base: update the license
net/ixgbe/base: cleanup codes
net/ixgbe/base: add FW recovery mode check
net/ixgbe/base: relpace an operation in X550 setup
net/ixgbe/base: update X550 SFP identification
Cleanup UNREFERENCED_1PARAMETER() macro because "hw" is used.
And remove Light Spring codes because the device was never
productised. And cleanup unused bypass codes.
Signed-off-by: Xiaoyun Li
---
v2:
* Merge base code change and ethdev fix into 1 patch to avoid in
* between build issue.
---
d
Update the GPL and BSD license headers to use the SPDX License
Identifier instead.
Signed-off-by: Xiaoyun Li
---
drivers/net/ixgbe/base/ixgbe_82598.c | 35 ++-
drivers/net/ixgbe/base/ixgbe_82598.h | 35 ++-
drivers/net/ixgbe/base/ixgbe_82599.c
Replace "=" operation with "|=" operation to only set the intended
register bits.
Signed-off-by: Xiaoyun Li
---
drivers/net/ixgbe/base/ixgbe_x550.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c
b/drivers/net/ixgbe/base/ixgbe_x550.c
i
Add support for DCB registers dump.
Signed-off-by: Xiaoyun Li
---
drivers/net/ixgbe/base/ixgbe_type.h | 5 +
1 file changed, 5 insertions(+)
diff --git a/drivers/net/ixgbe/base/ixgbe_type.h
b/drivers/net/ixgbe/base/ixgbe_type.h
index ea34bb979..cee6ba2e0 100644
--- a/drivers/net/ixgbe/base
Use ixgbe_identify_sfp_module_X550em to update SFP identification
flow. ixgbe_identify_sfp_module_X550em includes specific checks for
X550 about supported SFP modules.
Signed-off-by: Xiaoyun Li
---
drivers/net/ixgbe/base/ixgbe_x550.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
dif
Add FM NVM recovery mode check. Allow the software to detect this.
Signed-off-by: Xiaoyun Li
---
drivers/net/ixgbe/base/ixgbe_api.c | 12
drivers/net/ixgbe/base/ixgbe_api.h | 1 +
drivers/net/ixgbe/base/ixgbe_type.h | 4
drivers/net/ixgbe/base/ixgbe_x550.c | 16
Update README file to specify the version of CID drop.
Signed-off-by: Xiaoyun Li
---
drivers/net/ixgbe/base/README | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ixgbe/base/README b/drivers/net/ixgbe/base/README
index 70fdfe7c8..431be0260 100644
--- a/drivers
-Original Message-
> Date: Mon, 17 Sep 2018 15:47:35 +0800
> From: Gavin Hu
> To: dev@dpdk.org
> CC: gavin...@arm.com, honnappa.nagaraha...@arm.com, steve.cap...@arm.com,
> ola.liljed...@arm.com, jerin.ja...@caviumnetworks.com, n...@arm.com,
> sta...@dpdk.org
> Subject: [PATCH v3 3/3] do
On 13-Sep-18 2:06 PM, Maxime Coquelin wrote:
On 09/04/2018 05:15 PM, Anatoly Burakov wrote:
In-memory mode was never meant to support legacy mode, because we
cannot sort anonymous pages anyway.
Fixes: 72b49ff623c4 ("mem: support --in-memory mode")
Cc: sta...@dpdk.org
Signed-off-by: Anatoly B
On 14-Sep-18 8:54 AM, Maxime Coquelin wrote:
On 09/04/2018 05:15 PM, Anatoly Burakov wrote:
Enable setting and retrieving segment fd's internally.
For now, retrieving fd's will not be used anywhere until we
get an external API, but it will be useful for things like
virtio, where we wish to sh
Hello,
I tried to build the documentation but it looks like the instructions
about how to build it are not up to date. Currently running Ubuntu
18.04, it might be the reason.
marchand@gribouille:~/git/dpdk$ make doc
[...]
lookup cache used 16122/65536 hits=132815 misses=16618
finished...
sphinx p
On 13-Sep-18 8:44 AM, Shahaf Shuler wrote:
Hi Anatoly,
First thanks for the patchset, it is a great enhancement.
See question below.
Tuesday, September 4, 2018 4:12 PM, Anatoly Burakov:
Subject: [dpdk-dev] [PATCH 00/16] Support externally allocated memory in
DPDK
This is a proposal to enable
For IA, the AVX2 vector path is only recommended to be used on later
platforms (identified by AVX512 support, like SKL etc.) This is because
performance benchmark shows downgrade when running AVX2 vector path on
early platform (BDW/HSW) in some cases. But we still observe perf gain
with some real w
17/09/2018 11:59, David Marchand:
> Hello,
>
> I tried to build the documentation but it looks like the instructions
> about how to build it are not up to date. Currently running Ubuntu
> 18.04, it might be the reason.
In pkg/dpdk.spec, there is this requirement (for RedHat based distro):
On 10-Sep-18 4:59 AM, Tiwei Bie wrote:
On Fri, Sep 07, 2018 at 01:21:35PM +0100, Burakov, Anatoly wrote:
On 07-Sep-18 12:35 PM, Tiwei Bie wrote:
On Fri, Sep 07, 2018 at 10:39:16AM +0100, Burakov, Anatoly wrote:
On 05-Sep-18 5:28 AM, Tiwei Bie wrote:
Recently some memory APIs were introduced t
On 10-Sep-18 5:04 AM, Tiwei Bie wrote:
On Fri, Sep 07, 2018 at 01:24:05PM +0100, Burakov, Anatoly wrote:
On 07-Sep-18 12:37 PM, Tiwei Bie wrote:
On Fri, Sep 07, 2018 at 10:44:22AM +0100, Burakov, Anatoly wrote:
On 05-Sep-18 5:28 AM, Tiwei Bie wrote:
It's possible to have much more hugepage ba
17/09/2018 11:01, Luca Boccassi:
> They are built by the legacy makefiles but not by Meson.
>
> Fixes: 8f40ee0734c8 ("eal/x86: get hypervisor name")
> Cc: sta...@dpdk.org
>
> Signed-off-by: Luca Boccassi
> Acked-by: Bruce Richardson
Series applied, thanks
10/09/2018 15:28, Bruce Richardson:
> On Mon, Sep 10, 2018 at 12:32:43PM +0100, Luca Boccassi wrote:
> > This has been only build-tested for now, on a native ppc64el POWER8E
> > machine running Debian sid.
> >
> > Signed-off-by: Luca Boccassi
> > ---
> > v2: fix indentation, drop march_opt in ppc
> -Original Message-
> From: Jerin Jacob
> Sent: Monday, September 17, 2018 5:48 PM
> To: Gavin Hu (Arm Technology China)
> Cc: dev@dpdk.org; Honnappa Nagarahalli
> ; Steve Capper
> ; Ola Liljedahl ; nd
> ; sta...@dpdk.org
> Subject: Re: [PATCH v3 3/3] doc: add cross compile part for s
On 07-Sep-18 4:58 PM, Darek Stojaczyk wrote:
When neither RTE_IOVA_VA nor RTE_IOVA_PA was explicitly
requested, DPDK would currently fallback to the default
RTE_IOVA_PA mode and possibly encounter a failure later
on if running as a non-priviledged user. Attempting to
use RTE_IOVA_VA if no phys ad
+static struct rte_pci_driver otx_cryptodev_pmd = {
+ .id_table = pci_id_cpt_table,
+ .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
+ .probe = otx_cpt_pci_probe,
+ .remove = otx_cpt_pci_remove,
+};
remove extra spaces/
Between otx_cryptodev_pmd, otx_cry
-Original Message-
> Date: Mon, 17 Sep 2018 10:28:57 +
> From: "Gavin Hu (Arm Technology China)"
> To: Jerin Jacob
> CC: "dev@dpdk.org" , Honnappa Nagarahalli
> , Steve Capper , Ola
> Liljedahl , nd , "sta...@dpdk.org"
>
> Subject: RE: [PATCH v3 3/3] doc: add cross compile part fo
Hi Anoob,
>
> Hi Konstantin,
> Please see inline.
>
>
> This RFC introduces a new library within DPDK: librte_ipsec.
> The aim is to provide DPDK native high performance library for IPsec
> data-path processing.
> The library is supposed to utilize existing DPDK crypto-dev and
> security API to
From: Hemant Agrawal
Signed-off-by: Hemant Agrawal
---
drivers/bus/fslmc/mc/dpbp.c | 10 ++
drivers/bus/fslmc/mc/dpci.c | 25 +
drivers/bus/fslmc/mc/dpio.c | 9 +
drivers/bus/fslmc/mc/fsl_dpbp.h | 1 +
drivers/bus/fslmc/mc/fs
From: Nipun Gupta
Signed-off-by: Youri Querry
Signed-off-by: Roy Pledge
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/portal/dpaa2_hw_dpio.c | 180 ++---
drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 4 +
drivers/bus/fslmc/qbman/include/compat.h | 3 +-
.../fslmc/qbman/incl
About the series:
This series of patches upgrades the DPAA2 driver firmware to
v10.10.10 (MC Firmware).
As the bus/fslmc is modified, it is a dependent object for other
drivers like net/crypto/qdma. Also, the changes are mostly tightly
linked - thus, the patches include upgrade as well as sequenti
From: Hemant Agrawal
Signed-off-by: Hemant Agrawal
---
drivers/bus/fslmc/mc/dpdmai.c | 14 ++
drivers/bus/fslmc/mc/fsl_dpdmai.h | 5 +
drivers/bus/fslmc/mc/fsl_dpdmai_cmd.h | 21 +
drivers/raw/dpaa2_qdma/dpaa2_qdma.c | 14 +++---
driver
From: Hemant Agrawal
Signed-off-by: Hemant Agrawal
---
drivers/net/dpaa2/dpaa2_ethdev.c| 21 +-
drivers/net/dpaa2/mc/dpni.c | 22 +-
drivers/net/dpaa2/mc/fsl_dpni.h | 343 +++-
drivers/net/dpaa2/mc/fsl_dpni_cmd.h | 17 +-
drivers/net/dpaa2/mc/fsl_net.h
From: Nipun Gupta
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/portal/dpaa2_hw_dpio.c| 17 ++--
drivers/bus/fslmc/portal/dpaa2_hw_dpio.h| 4
drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 22 -
drivers/bus/fslmc/rte_bus_fslmc_version.map | 8 +++
From: Hemant Agrawal
Signed-off-by: Hemant Agrawal
---
drivers/crypto/dpaa2_sec/mc/dpseci.c | 30 ++--
drivers/crypto/dpaa2_sec/mc/fsl_dpseci.h | 10 +--
drivers/crypto/dpaa2_sec/mc/fsl_dpseci_cmd.h | 13 +++--
3 files changed, 45 insertions(+), 8 deletions(-
Firmware would contain pre-configured devices for each DPMAC backing
a DPNI. This patch reads those MAC address when the device is
initialized and sets it. THereafter, it can be changed through API or
commands from testpmd.
Signed-off-by: Shreyansh Jain
---
drivers/net/dpaa2/dpaa2_ethdev.c | 79
From: Nipun Gupta
In case of LX2 we get parse result summary in FD. We do not need to
prefetch and read the annotation to fetch the parse results.
Signed-off-by: Nipun Gupta
DPDK-1404
---
drivers/net/dpaa2/dpaa2_rxtx.c | 10 ++
1 file changed, 6 insertions(+), 4 deletions(-)
diff --gi
From: Nipun Gupta
Fixes: 5ae1edff6895 ("dpaa2: prepare for 32-bit build")
Cc: sta...@dpdk.org
Signed-off-by: Nipun Gupta
---
drivers/net/dpaa2/dpaa2_ethdev.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dpaa2/dpaa2_ethdev.
For now, only the packet count stats per queue is available. This is
part of xstats output (though, per queue stats are actually part of
rte_eth_stats basic stats).
Signed-off-by: Shreyansh Jain
---
drivers/net/dpaa2/dpaa2_ethdev.c | 32
1 file changed, 32 insert
From: Hemant Agrawal
Fixes: 0ebce6129bc6 ("net/dpaa2: support new ethdev offload APIs")
Cc: sta...@dpdk.org
Signed-off-by: Hemant Agrawal
---
drivers/net/dpaa2/dpaa2_ethdev.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dp
I think it would be better to squash the makefile related changes in
the 3/33 patch as the code
is actually added in that and here the code is not getting compiled
here.
So the changes in the following files has to be moved to patch 3/33?
drivers/crypto/Makefile
drivers/crypto/meson.
Hi Akhil,
On 17-09-2018 16:04, Akhil Goyal wrote:
External Email
+static struct rte_pci_driver otx_cryptodev_pmd = {
+ .id_table = pci_id_cpt_table,
+ .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
+ .probe = otx_cpt_pci_probe,
+ .remove = otx_cpt_pci_re
On 9/4/2018 9:28 AM, Anoob Joseph wrote:
From: Anoob Joseph
Adding code identified common for OcteonTX family crypto devices. This
patch is adding the code required by the structures and code path of
init routine.
Signed-off-by: Ankur Dwivedi
Signed-off-by: Anoob Joseph
Signed-off-by: Mur
Fixes: 7cacb05655 ("doc: add generic build instructions for sample apps")
Cc: sta...@dpdk.org
Signed-off-by: Gavin Hu
Reviewed-by: Honnappa Nagarahalli
---
doc/guides/sample_app_ug/compiling.rst | 16 +++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/doc/guides/samp
Fixes: 7cacb05655 ("doc: add generic build instructions for sample apps")
Cc: sta...@dpdk.org
Signed-off-by: Gavin Hu
Reviewed-by: Honnappa Nagarahalli
---
doc/guides/sample_app_ug/compiling.rst | 16 +++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/doc/guides/samp
Hi Jerin,
Thanks for review, could you help review the v5 version?
Best Regards,
Gavin
> -Original Message-
> From: Jerin Jacob
> Sent: Monday, September 17, 2018 6:35 PM
> To: Gavin Hu (Arm Technology China)
> Cc: dev@dpdk.org; Honnappa Nagarahalli
> ; Steve Capper
> ; Ola Liljedahl ;
On 9/11/2018 4:35 AM, Beilei Xing wrote:
> This patch adds alarm handler, and then i40e
> PF will use alarm handler instead of interrupt
> handler when device is started and Rx interrupt
> mode is disabled. This way will save CPU cycles
> during receiving packets.
>
> Signed-off-by: Beilei Xing
+typedef union cpt_res_s {
+ uint64_t u[2];
+ struct cpt_res_s_8s {
+#if (RTE_BYTE_ORDER == RTE_BIG_ENDIAN) /* Word 0 - Big Endian */
+ uint64_t reserved_17_63: 47;
+ uint64_t doneint : 1;
+ /**< [ 16: 16] Done interrup
On Mon, Sep 17, 2018 at 12:15 PM, Thomas Monjalon wrote:
> 17/09/2018 11:59, David Marchand:
>> Hello,
>>
>> I tried to build the documentation but it looks like the instructions
>> about how to build it are not up to date. Currently running Ubuntu
>> 18.04, it might be the reason.
>
> In pkg/dpdk
13/09/2018 11:11, Bruce Richardson:
> On Wed, Sep 12, 2018 at 06:21:34PM +0100, Luca Boccassi wrote:
> > Add -r option to ln, otherwise the link will be absolute and contain
> > the build path and break packaging among other things:
> >
> > lrwxrwxrwx 1 bluca bluca 99 Sep 11 22:17 librte_mempo
-Original Message-
> Date: Tue, 11 Sep 2018 10:02:07 +0200
> From: Mattias Rönnblom
> To: jerin.ja...@caviumnetworks.com
> CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom
>
> Subject: [PATCH v3 01/10] event/dsw: add DSW device registration and build
> system
> X-Mailer: g
Hi Akhil,
On 17-09-2018 16:07, Akhil Goyal wrote:
External Email
I think it would be better to squash the makefile related changes in
the 3/33 patch as the code
is actually added in that and here the code is not getting compiled
here.
So the changes in the following files has to be moved t
17/09/2018 12:45, Akhil Goyal:
> On 9/4/2018 9:28 AM, Anoob Joseph wrote:
> > +struct pending_queue {
> > + uint16_t enq_tail;
> > + uint16_t deq_head;
> > + uint16_t soft_qlen;
> > + /**< Software expected queue length */
> > + uint16_t p_doorbell;
> > + struct rid *rid_queue;
08/08/2018 17:58, Bruce Richardson:
> On Thu, Jul 26, 2018 at 03:55:56PM +0200, Thomas Monjalon wrote:
> > 19/07/2018 16:37, Bruce Richardson:
> > > EAL is a standard dependency of all libraries, except for those built
> > > before it. We can therefore simplify the logic by just checking if EAL
> >
29/08/2018 18:19, Bruce Richardson:
> After running meson to configure a DPDK build, it can be useful to know
> what was automatically enabled or disabled. Therefore, print out by way of
> summary a categorised list of libraries and drivers to be built.
>
> Signed-off-by: Bruce Richardson
Applie
On Mon, Sep 17, 2018 at 11:17:42AM +0100, Burakov, Anatoly wrote:
> On 10-Sep-18 4:59 AM, Tiwei Bie wrote:
> > On Fri, Sep 07, 2018 at 01:21:35PM +0100, Burakov, Anatoly wrote:
> > > On 07-Sep-18 12:35 PM, Tiwei Bie wrote:
> > > > On Fri, Sep 07, 2018 at 10:39:16AM +0100, Burakov, Anatoly wrote:
>
diff --git a/drivers/crypto/octeontx/otx_cryptodev_ops.c
b/drivers/crypto/octeontx/otx_cryptodev_ops.c
index d25f9c1..cc0030e 100644
--- a/drivers/crypto/octeontx/otx_cryptodev_ops.c
+++ b/drivers/crypto/octeontx/otx_cryptodev_ops.c
@@ -10,9 +10,15 @@
#include "cpt_pmd_logs.h"
#include "ot
29/08/2018 18:02, Bruce Richardson:
> Add in a cross-file to enable 32-bit compile tests as part
> of the test-meson-builds script.
>
> Signed-off-by: Bruce Richardson
> ---
> NOTE: For ease of use, it's recommended that meson 0.47 be used for
> this testing. With earlier versions, it may be nece
-Original Message-
> Date: Tue, 11 Sep 2018 10:02:09 +0200
> From: Mattias Rönnblom
> To: jerin.ja...@caviumnetworks.com
> CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom
>
> Subject: [PATCH v3 03/10] event/dsw: add DSW port configuration
> X-Mailer: git-send-email 2.17.1
-Original Message-
> Date: Tue, 11 Sep 2018 10:02:10 +0200
> From: Mattias Rönnblom
> To: jerin.ja...@caviumnetworks.com
> CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom
>
> Subject: [PATCH v3 04/10] event/dsw: add support in DSW for
> linking/unlinking ports
> X-Mailer:
Monday, September 17, 2018 1:07 PM, Burakov, Anatoly:
> Subject: Re: [dpdk-dev] [PATCH 00/16] Support externally allocated memory
> in DPDK
>
> On 13-Sep-18 8:44 AM, Shahaf Shuler wrote:
[...]
> >> The responsibility to ensure memory is accessible before using it is
> >> on the shoulders of the
On 9/17/2018 5:12 PM, Joseph, Anoob wrote:
Hi Akhil,
On 17-09-2018 16:07, Akhil Goyal wrote:
External Email
I think it would be better to squash the makefile related changes in
the 3/33 patch as the code
is actually added in that and here the code is not getting compiled
here.
So the change
-Original Message-
> Date: Tue, 11 Sep 2018 10:02:11 +0200
> From: Mattias Rönnblom
> To: jerin.ja...@caviumnetworks.com
> CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom
>
> Subject: [PATCH v3 05/10] event/dsw: add DSW event scheduling and device
> start/stop
> X-Mailer:
-Original Message-
> Date: Tue, 11 Sep 2018 10:02:15 +0200
> From: Mattias Rönnblom
> To: jerin.ja...@caviumnetworks.com
> CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom
>
> Subject: [PATCH v3 09/10] event/dsw: implement eventdev 'xstats' counters
> in DSW
> X-Mailer: gi
Hi Thomas,
On 17-09-2018 17:16, Thomas Monjalon wrote:
External Email
17/09/2018 12:45, Akhil Goyal:
On 9/4/2018 9:28 AM, Anoob Joseph wrote:
+struct pending_queue {
+ uint16_t enq_tail;
+ uint16_t deq_head;
+ uint16_t soft_qlen;
+ /**< Software expected queue length */
+ ui
-Original Message-
> Date: Tue, 11 Sep 2018 10:02:16 +0200
> From: Mattias Rönnblom
> To: jerin.ja...@caviumnetworks.com
> CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom
>
> Subject: [PATCH v3 10/10] event/dsw: include DSW event device documentation
> X-Mailer: git-send-e
Hi Thomas,
On 9/17/2018 5:16 PM, Thomas Monjalon wrote:
17/09/2018 12:45, Akhil Goyal:
On 9/4/2018 9:28 AM, Anoob Joseph wrote:
+struct pending_queue {
+ uint16_t enq_tail;
+ uint16_t deq_head;
+ uint16_t soft_qlen;
+ /**< Software expected queue length */
+
Hi Akhil,
On 17-09-2018 17:31, Akhil Goyal wrote:
External Email
diff --git a/drivers/crypto/octeontx/otx_cryptodev_ops.c
b/drivers/crypto/octeontx/otx_cryptodev_ops.c
index d25f9c1..cc0030e 100644
--- a/drivers/crypto/octeontx/otx_cryptodev_ops.c
+++ b/drivers/crypto/octeontx/otx_cryptodev_o
__rte_mbuf_raw_free and __rte_pktmbuf_prefree_seg have been deprecated for
a long time now (early 17.05), are not part of the abi and are easily
replaced with existing api.
Signed-off-by: David Marchand
Acked-by: Andrew Rybchenko
---
doc/guides/rel_notes/release_18_11.rst | 5 +
lib/librte
On 9/4/2018 9:28 AM, Anoob Joseph wrote:
From: Murthy NSSR
Adding pmd ops helper functions. Control path accessed APIs would be
added as helper functions. Adding microcode defined macros etc as
dependencies to the helper functions.
Signed-off-by: Ankur Dwivedi
Signed-off-by: Anoob Joseph
17/09/2018 14:32, Akhil Goyal:
>
> Hi Thomas,
>
> On 9/17/2018 5:16 PM, Thomas Monjalon wrote:
>
> > 17/09/2018 12:45, Akhil Goyal:
> >> On 9/4/2018 9:28 AM, Anoob Joseph wrote:
> >>> +struct pending_queue {
> >>> + uint16_t enq_tail;
> >>> + uint16_t deq_head;
> >>> + uint16_t soft_qlen;
> >>>
On Mon, Sep 17, 2018 at 02:03:50PM +0200, Thomas Monjalon wrote:
> 29/08/2018 18:02, Bruce Richardson:
> > Add in a cross-file to enable 32-bit compile tests as part
> > of the test-meson-builds script.
> >
> > Signed-off-by: Bruce Richardson
> > ---
> > NOTE: For ease of use, it's recommended th
1 - 100 of 156 matches
Mail list logo