Re: [dpdk-dev] [PATCH 00/16] Support externally allocated memory in DPDK

2018-09-17 Thread Burakov, Anatoly
On 17-Sep-18 1:16 PM, Shahaf Shuler wrote: 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

Re: [dpdk-dev] [PATCH v2] eal/bus: use RTE_IOVA_PA only if phys addresses are available

2018-09-17 Thread Stojaczyk, Dariusz
> -Original Message- > From: Burakov, Anatoly > Sent: Monday, September 17, 2018 12:34 PM > To: Stojaczyk, Dariusz ; dev@dpdk.org; > Santosh Shukla ; Hemant Agrawal > ; Jerin Jacob > > Cc: Maxime Coquelin ; Chas Williams > > Subject: Re: [PATCH v2] eal/bus: use RTE_IOVA_PA only if phys

Re: [dpdk-dev] [PATCH 2/3] net/virtio-user: avoid parsing process mappings

2018-09-17 Thread Burakov, Anatoly
On 17-Sep-18 12:57 PM, Tiwei Bie wrote: 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,

Re: [dpdk-dev] Warnings when building the doc on Ubuntu 18.04

2018-09-17 Thread David Marchand
On Mon, Sep 17, 2018 at 1:34 PM, David Marchand wrote: > On Mon, Sep 17, 2018 at 12:15 PM, Thomas Monjalon wrote: >> 17/09/2018 11:59, David Marchand: >>> After this, I still see those warnings (and actually a lot of others). >>> The pdf generated docs have no link in them, but the html ones are

[dpdk-dev] [PATCH v8 2/4] examples/l3fwd-power: simple app update for new API

2018-09-17 Thread Liang Ma
Add the support for new traffic pattern aware power control power management API. Example: ./l3fwd-power -l xxx -n 4 -w :xx:00.0 -w :xx:00.1 -- -p 0x3 -P --config="(0,0,xx),(1,0,xx)" --empty-poll="0,0,0" -l 14 -m 9 -h 1 Please Reference l3fwd-power document for all parameter except em

[dpdk-dev] [PATCH v8 3/4] doc/guides/proguide/power-man: update the power API

2018-09-17 Thread Liang Ma
Update the document for empty poll API. Signed-off-by: Liang Ma --- doc/guides/prog_guide/power_man.rst | 90 + 1 file changed, 90 insertions(+) diff --git a/doc/guides/prog_guide/power_man.rst b/doc/guides/prog_guide/power_man.rst index eba1cc6..056cb12 100

[dpdk-dev] [PATCH v8 1/4] lib/librte_power: traffic pattern aware power control

2018-09-17 Thread Liang Ma
1. Abstract For packet processing workloads such as DPDK polling is continuous. This means CPU cores always show 100% busy independent of how much work those cores are doing. It is critical to accurately determine how busy a core is hugely important for the following reasons: * No indication o

[dpdk-dev] [PATCH v8 4/4] doc/guides/sample_app_ug/l3_forward_power_man.rst: empty poll update

2018-09-17 Thread Liang Ma
Add empty poll mode command line example Signed-off-by: Liang Ma --- doc/guides/sample_app_ug/l3_forward_power_man.rst | 29 +++ 1 file changed, 29 insertions(+) diff --git a/doc/guides/sample_app_ug/l3_forward_power_man.rst b/doc/guides/sample_app_ug/l3_forward_power_man.r

Re: [dpdk-dev] [PATCH v2 33/33] doc: adds doc file

2018-09-17 Thread Akhil Goyal
++John On 9/4/2018 9:29 AM, Anoob Joseph wrote: From: Anoob Joseph This patch adds the features file and the document containing help to compile and use octeontx crypto. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Murthy NSSR Signed-off-by: Nithin Dabilpuram S

Re: [dpdk-dev] [PATCH] test-meson-builds: add 32-bit compilation test

2018-09-17 Thread Thomas Monjalon
17/09/2018 14:54, Bruce Richardson: > 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 > > >

[dpdk-dev] [PATCH 1/2] eal/vfio: check if we already have the group fd open

2018-09-17 Thread Darek Stojaczyk
From: Dariusz Stojaczyk Always attempt to find already opened fd for an iommu group as subsequent attempts to open it will fail. There's no public API to check if a group was already bound and has a container, so rte_vfio_container_group_bind() shouldn't fail in such case. Fixes: ea2dc1066870 (

[dpdk-dev] [PATCH 2/2] eal/vfio: cleanup getting group fd

2018-09-17 Thread Darek Stojaczyk
From: Dariusz Stojaczyk Factor out duplicated code. Signed-off-by: Dariusz Stojaczyk --- lib/librte_eal/linuxapp/eal/eal_vfio.c | 119 ++--- 1 file changed, 45 insertions(+), 74 deletions(-) diff --git a/lib/librte_eal/linuxapp/eal/eal_vfio.c b/lib/librte_eal/linuxapp/eal

Re: [dpdk-dev] [PATCH 2/6] crypto/mvsam: update hash digest sizes

2018-09-17 Thread Akhil Goyal
Hi Tomasz, Is this patch a fix which needs to be applied for stable as well or you have added some changes in the code which can support this. -Akhil On 8/24/2018 7:24 PM, Tomasz Duszynski wrote: From: Szymon Sliwa Update hash digest sizes to match hardware capabilities. Signed-off-by: Szym

Re: [dpdk-dev] [PATCH v3 5/5] doc: add event eth Tx adapter guide

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Fri, 31 Aug 2018 11:11:09 +0530 > From: Nikhil Rao > To: jerin.ja...@caviumnetworks.com, olivier.m...@6wind.com > CC: dev@dpdk.org, Nikhil Rao > Subject: [PATCH v3 5/5] doc: add event eth Tx adapter guide > X-Mailer: git-send-email 1.8.3.1 > > > Add programmer

Re: [dpdk-dev] [PATCH 3/6] crypto/mvsam: add support for HMAC SHA224

2018-09-17 Thread Akhil Goyal
Hi Tomasz, On 8/24/2018 7:24 PM, Tomasz Duszynski wrote: Add support for the HMAC SHA224 authentication algorithm. Signed-off-by: Tomasz Duszynski Reviewed-by: Natalie Samsonov --- drivers/crypto/mvsam/rte_mrvl_pmd.c | 3 +++ drivers/crypto/mvsam/rte_mrvl_pmd_ops.c | 21 ++

Re: [dpdk-dev] [PATCH 4/6] crypto/mvsam: add support for AES ECB

2018-09-17 Thread Akhil Goyal
On 8/24/2018 7:24 PM, Tomasz Duszynski wrote: Add support for AES128/192/256 in ECB mode. Signed-off-by: Tomasz Duszynski Reviewed-by: Natalie Samsonov --- drivers/crypto/mvsam/rte_mrvl_pmd.c | 5 + drivers/crypto/mvsam/rte_mrvl_pmd_ops.c | 20 2 files chan

Re: [dpdk-dev] [PATCH 1/6] crypto/mvsam: fix shared library build

2018-09-17 Thread Akhil Goyal
Please add cc: sta...@dpdk.org for the fixes patches in the next version. On 8/24/2018 7:24 PM, Tomasz Duszynski wrote: Add missing rte_kvargs library dependency. Without that shared library build fails due to unresolved rte_kvargs_* symbols. Fixes: 25b05a1c806b ("crypto/mvsam: parse max number

Re: [dpdk-dev] [PATCH v3 4/5] eventdev: add auto test for eth Tx adapter

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Fri, 31 Aug 2018 11:11:08 +0530 > From: Nikhil Rao > To: jerin.ja...@caviumnetworks.com, olivier.m...@6wind.com > CC: dev@dpdk.org, Nikhil Rao > Subject: [PATCH v3 4/5] eventdev: add auto test for eth Tx adapter > X-Mailer: git-send-email 1.8.3.1 > > This patch

Re: [dpdk-dev] [PATCH 1/3] crypto/mvsam: add S/G support to crypto dirver

2018-09-17 Thread Akhil Goyal
Hi Tomasz, On 8/27/2018 5:52 PM, Tomasz Duszynski wrote: From: Zyta Szpak The patch adds support for chained source mbufs given to crypto operations. The crypto engine accepts source buffer containing a number of segments. The destination buffer stays the same - always one segment. On decrypt

Re: [dpdk-dev] [PATCH 1/2] eventdev: fix port id argument in Rx adapter caps API

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Wed, 5 Sep 2018 17:51:17 +0530 > From: Nikhil Rao > To: jerin.ja...@caviumnetworks.com > CC: dev@dpdk.org, Nikhil Rao , sta...@dpdk.org > Subject: [PATCH 1/2] eventdev: fix port id argument in Rx adapter caps API > X-Mailer: git-send-email 1.8.3.1 > > > Make th

Re: [dpdk-dev] [PATCH v2 07/33] common/cpt: add hardware register defines

2018-09-17 Thread Joseph, Anoob
Hi Akhil, On 17-09-2018 16:48, Akhil Goyal wrote: External Email +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 

Re: [dpdk-dev] [PATCH v6] net/i40e: add interface to use latest vec path

2018-09-17 Thread Ferruh Yigit
On 9/17/2018 10:58 AM, Xiaoyun Li wrote: > 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

Re: [dpdk-dev] [PATCH v2 10/33] common/cpt: add PMD ops helper functions

2018-09-17 Thread Joseph, Anoob
HI Akhil, On 17-09-2018 18:17, Akhil Goyal wrote: External Email 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 funct

Re: [dpdk-dev] [PATCH 2/2] app/testpmd: use the generic function to dump packets

2018-09-17 Thread Raslan Darawsheh
Hi David, Thx for this feedback I'll be sending a new version with your suggestion. Kindest regards, Raslan Darawsheh -Original Message- From: Jerin Jacob Sent: Friday, September 14, 2018 9:35 AM To: David Marchand Cc: Raslan Darawsheh ; Wu, Jingjing ; Thomas Monjalon ; dev@dpdk.or

Re: [dpdk-dev] [PATCH] examples/eventdev_pipeline: add Tx adapter support

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Wed, 5 Sep 2018 19:15:54 +0530 > From: Pavan Nikhilesh > To: jerin.ja...@caviumnetworks.com, nikhil@intel.com, > harry.van.haa...@intel.com, anoob.jos...@caviumnetworks.com > Cc: dev@dpdk.org, Pavan Nikhilesh > Subject: [dpdk-dev] [PATCH] examples/eventdev

Re: [dpdk-dev] [PATCH v2 01/33] config: add Cavium OcteonTX crypto PMD skeleton

2018-09-17 Thread Joseph, Anoob
Hi Akhil, On 17-09-2018 17:50, Akhil Goyal wrote: External Email 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

Re: [dpdk-dev] [PATCH v2 01/33] config: add Cavium OcteonTX crypto PMD skeleton

2018-09-17 Thread Thomas Monjalon
17/09/2018 16:13, Joseph, Anoob: > On 17-09-2018 17:50, Akhil Goyal wrote: > > On 9/17/2018 5:12 PM, Joseph, Anoob wrote: > >> On 17-09-2018 16:07, Akhil Goyal wrote: > > I think it would be better to squash the makefile related changes in > > the 3/33 patch as the code > > is actually

Re: [dpdk-dev] [PATCH v6] net/i40e: add interface to use latest vec path

2018-09-17 Thread Thomas Monjalon
17/09/2018 16:14, Ferruh Yigit: > On 9/17/2018 10:58 AM, Xiaoyun Li wrote: > > @@ -1078,6 +1078,9 @@ struct i40e_adapter { > > uint64_t pctypes_tbl[I40E_FLOW_TYPE_MAX] __rte_cache_min_aligned; > > uint64_t flow_types_mask; > > uint64_t pctypes_mask; > > + > > + /* For devargs */ > > +

Re: [dpdk-dev] [RFC] ipsec: new library for IPsec data-path processing

2018-09-17 Thread Joseph, Anoob
Hi Konstantin, On 17-09-2018 16:06, Ananyev, Konstantin wrote: External Email 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 s

Re: [dpdk-dev] [PATCH v2 01/33] config: add Cavium OcteonTX crypto PMD skeleton

2018-09-17 Thread Joseph, Anoob
Hi Thomas, On 17-09-2018 20:06, Thomas Monjalon wrote: External Email 17/09/2018 16:13, Joseph, Anoob: On 17-09-2018 17:50, Akhil Goyal wrote: On 9/17/2018 5:12 PM, Joseph, Anoob wrote: On 17-09-2018 16:07, Akhil Goyal wrote: I think it would be better to squash the makefile related change

Re: [dpdk-dev] [PATCH] net/avf: remove unused variables and label

2018-09-17 Thread Ferruh Yigit
On 9/13/2018 3:44 PM, Bruce Richardson wrote: > Compiling with all warnings turned on causes errors about unused variables > and an unused label. Remove these to allow building without having to > disable those warnings. If this is fixing some build errors should it be backported? And why we didn

Re: [dpdk-dev] [PATCH] test-meson-builds: add 32-bit compilation test

2018-09-17 Thread Bruce Richardson
On Mon, Sep 17, 2018 at 03:38:58PM +0200, Thomas Monjalon wrote: > 17/09/2018 14:54, Bruce Richardson: > > 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 tes

Re: [dpdk-dev] [PATCH] net/avf: remove unused variables and label

2018-09-17 Thread Bruce Richardson
On Mon, Sep 17, 2018 at 03:53:40PM +0100, Ferruh Yigit wrote: > On 9/13/2018 3:44 PM, Bruce Richardson wrote: > > Compiling with all warnings turned on causes errors about unused variables > > and an unused label. Remove these to allow building without having to > > disable those warnings. > > If

[dpdk-dev] [PATCH] doc: add note into coding style

2018-09-17 Thread Marko Kovacevic
Added a note into the coding style to highlight the use of a bool within a struct Signed-off-by: Marko Kovacevic --- doc/guides/contributing/coding_style.rst | 9 + 1 file changed, 9 insertions(+) diff --git a/doc/guides/contributing/coding_style.rst b/doc/guides/contributing/coding_st

Re: [dpdk-dev] [PATCH v6 1/2] librte_lpm: Improve performance of the delete and add functions

2018-09-17 Thread Bruce Richardson
On Tue, Jul 17, 2018 at 12:20:10PM +0300, Alex Kiselev wrote: > librte_lpm: Improve lpm6 performance > > Rework the lpm6 rule subsystem and replace > current rules algorithm complexity O(n) > with hashtables which allow dealing with > large (50k) rule sets. > > Signed-off-by: Alex Kiselev Title

Re: [dpdk-dev] [PATCH v6 2/2] librte_lpm: Improve performance of the delete and add functions

2018-09-17 Thread Bruce Richardson
On Tue, Jul 17, 2018 at 12:20:19PM +0300, Alex Kiselev wrote: > librte_lpm: Improve lpm6 performance > > There is no need to rebuild the whole LPM tree > when a rule is deleted. This patch addresses this > issue introducing new delete operation. > > Signed-off-by: Alex Kiselev > --- > lib/librt

Re: [dpdk-dev] [PATCH] net/avf: remove unused variables and label

2018-09-17 Thread Ferruh Yigit
On 9/17/2018 4:20 PM, Bruce Richardson wrote: > On Mon, Sep 17, 2018 at 03:53:40PM +0100, Ferruh Yigit wrote: >> On 9/13/2018 3:44 PM, Bruce Richardson wrote: >>> Compiling with all warnings turned on causes errors about unused variables >>> and an unused label. Remove these to allow building witho

[dpdk-dev] DPDK Release Status Meeting 13/09/2018

2018-09-17 Thread Ferruh Yigit
Minutes 13 September 2018 - Agenda: * Subtrees * Bugzilla * Dates * Opens Participants: * Intel * RedHat * Debian Subtrees * next-net * Around 200 patches in backlog * Three new PMDs * next-crypto * 90 patches under review * next-virtio * Preparing th

Re: [dpdk-dev] [PATCH] net/avf: remove unused variables and label

2018-09-17 Thread Bruce Richardson
On Mon, Sep 17, 2018 at 05:12:19PM +0100, Ferruh Yigit wrote: > On 9/17/2018 4:20 PM, Bruce Richardson wrote: > > On Mon, Sep 17, 2018 at 03:53:40PM +0100, Ferruh Yigit wrote: > >> On 9/13/2018 3:44 PM, Bruce Richardson wrote: > >>> Compiling with all warnings turned on causes errors about unused v

Re: [dpdk-dev] [PATCH] doc: add note into coding style

2018-09-17 Thread Ferruh Yigit
On 9/17/2018 4:24 PM, Marko Kovacevic wrote: > Added a note into the coding style to > highlight the use of a bool within a struct > > Signed-off-by: Marko Kovacevic Reviewed-by: Ferruh Yigit

Re: [dpdk-dev] [PATCH] test-meson-builds: add 32-bit compilation test

2018-09-17 Thread Thomas Monjalon
17/09/2018 17:17, Bruce Richardson: > On Mon, Sep 17, 2018 at 03:38:58PM +0200, Thomas Monjalon wrote: > > 17/09/2018 14:54, Bruce Richardson: > > > 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 3

Re: [dpdk-dev] [PATCH] vmxnet3: stats_reset implementation

2018-09-17 Thread Yong Wang
> On Sep 17, 2018, at 12:45 AM, yogev ch wrote: > > '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 >

Re: [dpdk-dev] [RFC] ipsec: new library for IPsec data-path processing

2018-09-17 Thread Ananyev, Konstantin
Hi Jerin, > > > > > > > > Anyway, let's pretend we found some smart way to distribute inbound > > > packets for the same SA to multiple HW queues/CPU > cores. > > > To make ipsec processing for such case to work correctly just atomicity > > > on check/update segn/replay_window is not enough. >

Re: [dpdk-dev] [PATCH] eal: force IOVA mode to physical

2018-09-17 Thread Eric Zhang
Hi All, Considered that most people commented that eal option "--iova-mode" is a better solution that gives user a chance not to use bus iova auto detection scheme and want to override for some reason, I will generate 2nd version patch which will use eal option instead of compilation configura

Re: [dpdk-dev] [PATCH 2/3] net/vmxnet3: fix vmxnet3 dev_uninit() hot-unplug

2018-09-17 Thread Louis Luo
Hi Luca, When eth_vmxnet3_dev_uninit() is called, is it guaranteed that vmxnet3_dev_close/ vmxnet3_dev_stop must have been called? I'm not familiar with the hot-plug procedure, so just wonder if there is any chance that eth_vmxnet3_dev_uninit() is called without calling vmxnet3_dev_close/ vmxn

Re: [dpdk-dev] [PATCH v3 10/10] event/dsw: include DSW event device documentation

2018-09-17 Thread Mattias Rönnblom
On 2018-09-17 14:29, Jerin Jacob wrote: diff --git a/doc/guides/eventdevs/dsw.rst b/doc/guides/eventdevs/dsw.rst new file mode 100644 index 0..de41ae9d3 --- /dev/null +++ b/doc/guides/eventdevs/dsw.rst @@ -0,0 +1,97 @@ +.. SPDX-License-Identifier: BSD-3-Clause +Copyright(c) 2017 Int

Re: [dpdk-dev] [PATCH] test-meson-builds: add 32-bit compilation test

2018-09-17 Thread Bruce Richardson
On Mon, Sep 17, 2018 at 06:44:52PM +0200, Thomas Monjalon wrote: > 17/09/2018 17:17, Bruce Richardson: > > On Mon, Sep 17, 2018 at 03:38:58PM +0200, Thomas Monjalon wrote: > > > 17/09/2018 14:54, Bruce Richardson: > > > > On Mon, Sep 17, 2018 at 02:03:50PM +0200, Thomas Monjalon wrote: > > > > > 29

Re: [dpdk-dev] [PATCH] test-meson-builds: add 32-bit compilation test

2018-09-17 Thread Thomas Monjalon
17/09/2018 21:34, Bruce Richardson: > On Mon, Sep 17, 2018 at 06:44:52PM +0200, Thomas Monjalon wrote: > > 17/09/2018 17:17, Bruce Richardson: > > > On Mon, Sep 17, 2018 at 03:38:58PM +0200, Thomas Monjalon wrote: > > > > 17/09/2018 14:54, Bruce Richardson: > > > > > On Mon, Sep 17, 2018 at 02:03:5

Re: [dpdk-dev] [PATCH] net/mlx5: fix non-matching parameters documentation

2018-09-17 Thread Yongseok Koh
> On Sep 17, 2018, at 9:03 AM, Asaf Penso wrote: > > tso and vlan parameters were removed from the signature > of txq_mbuf_to_swp function. > > The documentation of the function was not updated accordingly. > > Remove the tso and vlan documentation to match the function signature. > > Fixes:

Re: [dpdk-dev] [PATCH v6] net/i40e: add interface to use latest vec path

2018-09-17 Thread Li, Xiaoyun
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Monday, September 17, 2018 22:37 > To: Yigit, Ferruh > Cc: Li, Xiaoyun ; Xing, Beilei ; > Zhang, Qi Z ; dev@dpdk.org; Yang, Zhiyong > ; Richardson, Bruce > Subject: Re: [PATCH v6] net/i40e: add interface t

[dpdk-dev] [PATCH v7] net/i40e: add interface to use latest vec path

2018-09-17 Thread Xiaoyun Li
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

Re: [dpdk-dev] [PATCH v3] net/i40e: add alarm handler

2018-09-17 Thread Xing, Beilei
> -Original Message- > From: Yigit, Ferruh > Sent: Monday, September 17, 2018 7:08 PM > To: Xing, Beilei ; Zhang, Qi Z > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3] net/i40e: add alarm handler > > On 9/11/2018 4:35 AM, Beilei Xing wrote: > > This patch adds alarm handler, and t

Re: [dpdk-dev] [PATCH v3 10/10] event/dsw: include DSW event device documentation

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Mon, 17 Sep 2018 21:17:34 +0200 > From: Mattias Rönnblom > To: Jerin Jacob > CC: bruce.richard...@intel.com, dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3 10/10] event/dsw: include DSW event > device documentation > User-Agent: Mozilla/5.0 (X11; Linux x86_64

[dpdk-dev] [PATCH] net/i40e: remove driver log

2018-09-17 Thread Beilei Xing
Remove "INFO" level log when no interrupt event indicated in alarm handler, otherwise there will be lots of prints which makes console unusable. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/net/i40e/i

[dpdk-dev] [PATCH v2] net/i40e: remove driver log

2018-09-17 Thread Beilei Xing
Remove driver log when no interrupt event indicated in alarm handler for both PF and VF, otherwise there will be lots of prints which makes console unusable. Signed-off-by: Beilei Xing --- v2 changes: - Also remove the driver log for VF. drivers/net/i40e/i40e_ethdev.c| 4 +--- drivers/net

[dpdk-dev] [PATCH] net/ixgbe: put 5tuple check in front to jump over ntuple filter case

2018-09-17 Thread faicker.mo
From: "faicker.mo" Check in func ntuple_filter_to_5tuple is too late for fdir filter rule, add check in func cons_parse_ntuple_filter. Signed-off-by: faicker.mo --- drivers/net/ixgbe/ixgbe_flow.c | 29 + 1 file changed, 29 insertions(+) diff --git a/drivers/net/ixg

<    1   2