On Thu, Sep 14, 2017 at 03:16:05AM +, Yang, Qiming wrote:
> > -Original Message-
> > From: Yigit, Ferruh
> > Sent: Thursday, September 14, 2017 1:06 AM
> > To: Hu, Xuekun ; Shijith Thotton
> > ; Yang, Qiming
> > ; Gregory Etelson
> > Cc: dev@dpdk.org; Tan, Jianfeng
> > Subject: Re: [d
In function ark_config_device(), there are several malloc without null
point check. Fix it by adding null point check.
Signed-off-by: Yong Wang
---
drivers/net/ark/ark_ethdev.c | 6 ++
drivers/net/ark/ark_pktchkr.c | 4
drivers/net/ark/ark_pktdir.c | 4
drivers/net/ark/ark_pktgen
On Thu, Sep 14, 2017 at 12:30:55PM +0530, Shijith Thotton wrote:
> On Thu, Sep 14, 2017 at 03:16:05AM +, Yang, Qiming wrote:
> > > -Original Message-
> > > From: Yigit, Ferruh
> > > Sent: Thursday, September 14, 2017 1:06 AM
> > > To: Hu, Xuekun ; Shijith Thotton
> > > ; Yang, Qiming
>
On 13/09/17 11:39, Thomas Monjalon wrote:
12/09/2017 15:08, Eelco Chaudron:
Call the mlockall() function, to attempt to lock all of its process
memory into physical RAM, and preventing the kernel from paging any
of its memory to disk.
When using testpmd for performance testing, depending on the
In function ark_config_device(), there are several malloc without null
point check. Fix it by adding null point check.
Signed-off-by: Yong Wang
---
drivers/net/ark/ark_ethdev.c | 6 ++
drivers/net/ark/ark_pktchkr.c | 4
drivers/net/ark/ark_pktdir.c | 4
drivers/net/ark/ark_pktgen
13/09/2017 23:42, Ananyev, Konstantin:
> From: Thomas Monjalon [mailto:tho...@monjalon.net]
> > 13/09/2017 14:56, Ananyev, Konstantin:
> > > From: Thomas Monjalon [mailto:tho...@monjalon.net]
> > Konstantin, I would like your opinion about the proposal below.
> > It is about making on the fly confi
Thanks!
Yongseok
> On Sep 13, 2017, at 10:23 PM, Shahaf Shuler wrote:
>
> Hi Yongseok,
>
> Wednesday, September 13, 2017 10:52 PM, Yongseok Koh:
>>>
>>> +/* Maximum number of DS in WQE. */
>>> +#define MLX5_MAX_DS 63
>> How about make it consistent with MLX5_MPW_DSEG_MAX by naming
>> MLX5_DS
On Wed, Sep 13, 2017 at 01:50:37PM +0300, Shahaf Shuler wrote:
> The current Tx error counter counts, according to its description,
> the total number of packets not sent when TX ring full. It is reported
> to application as part of oerrors field.
>
> The drop due to full ring is not the statistic
On Wed, Sep 13, 2017 at 01:50:38PM +0300, Shahaf Shuler wrote:
> Tx error counter lacks the logic of incrementation, making it useless for
> applications.
>
> Fixes: 87011737b715 ("mlx5: add software counters")
> Cc: sta...@dpdk.org
> Cc: adrien.mazarg...@6wind.com
>
> Signed-off-by: Shahaf Shule
14/09/2017 04:25, Stephen Hemminger:
> Bisecting a tree with lots of subtree merges is terrible. That is why Linus
> rebases and doesn't directly take linux-next
I agree, bisecting with subtree merges is not pleasant at all.
That's why I chose the rebase method until now.
Adrien mentioned some dr
rte_security library provides APIs for security session
create/free for protocol offload or offloaded crypto
operation to ethernet device.
Signed-off-by: Akhil Goyal
Signed-off-by: Boris Pismenny
Signed-off-by: Radu Nicolau
Signed-off-by: Declan Doherty
---
lib/librte_security/Makefile
Signed-off-by: Hemant Agrawal
Signed-off-by: Akhil Goyal
---
doc/api/doxy-api-index.md | 3 +-
doc/api/doxy-api.conf | 1 +
doc/guides/prog_guide/index.rst| 1 +
doc/guides/prog_guide/rte_security.rst | 552 +
4 files ch
This patchset introduce the rte_security library in DPDK.
This also includes the sample implementation of drivers and
changes in ipsec gateway application to demonstrate its usage.
rte_security library is implemented on the idea proposed earlier [1],[2],[3]
to support IPsec Inline and look aside
From: Boris Pismenny
The ESP header is required for IPsec crypto actions.
Signed-off-by: Boris Pismenny
Signed-off-by: Aviad Yehezkel
---
doc/api/doxy-api-index.md | 1 +
lib/librte_ether/rte_flow.h | 26
lib/librte_net/Makefile | 2 +-
lib/librte_net/rte_esp.h
security ops are added to crypto device to support
protocol offloaded security operations.
Signed-off-by: Akhil Goyal
Signed-off-by: Declan Doherty
---
doc/guides/cryptodevs/features/default.ini | 1 +
lib/librte_cryptodev/rte_crypto.h | 3 ++-
lib/librte_cryptodev/rte_crypto
From: Boris Pismenny
add security crypto flags and update mbuf fields to support
IPsec crypto offload for transmitted packets, and to indicate
crypto result for received packets.
Signed-off-by: Aviad Yehezkel
Signed-off-by: Boris Pismenny
Signed-off-by: Radu Nicolau
---
lib/librte_mbuf/rte_m
From: Declan Doherty
rte_flow_action type and ethdev updated to support rte_security
sessions for crypto offload to ethernet device.
Signed-off-by: Boris Pismenny
Signed-off-by: Aviad Yehezkel
Signed-off-by: Radu Nicolau
Signed-off-by: Declan Doherty
---
lib/librte_ether/rte_ethdev.c
Signed-off-by: Akhil Goyal
Signed-off-by: Radu Nicolau
---
MAINTAINERS| 6 ++
config/common_base | 6 ++
lib/Makefile | 5 +
mk/rte.app.mk | 1 +
4 files changed, 18 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index a0cd75e..f5b790e 100644
--- a/MAINTAINE
From: Radu Nicolau
Signed-off-by: Radu Nicolau
Signed-off-by: Declan Doherty
---
config/common_base | 1 +
drivers/net/Makefile | 2 +-
drivers/net/ixgbe/Makefile | 4 +-
drivers/net/ixgbe/ixgbe_ethdev.c | 13 +
drivers/net/ixgbe/i
From: Boris Pismenny
The crypto action is specified by an application to request
crypto offload for a flow.
Signed-off-by: Boris Pismenny
Signed-off-by: Aviad Yehezkel
---
lib/librte_ether/rte_flow.h | 30 ++
1 file changed, 30 insertions(+)
diff --git a/lib/librt
driver implementation to support rte_security APIs
Signed-off-by: Akhil Goyal
---
doc/guides/cryptodevs/features/dpaa2_sec.ini | 1 +
drivers/crypto/Makefile | 2 +-
drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 402 ++-
drivers/crypto/dpaa2_sec/
ipsec-secgw application is modified so that it can support
following type of actions for crypto operations
1. full protocol offload using crypto devices.
2. inline ipsec using ethernet devices to perform crypto operations
3. full protocol offload using ethernet devices.
4. non protocol offload
Sig
>From: Hu, Jiayu
>Sent: Thursday, September 14, 2017 2:00 AM
>To: Ananyev, Konstantin ; Kavanagh, Mark B
>
>Cc: dev@dpdk.org; Tan, Jianfeng
>Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
>Hi Konstantin,
>
>> -Original Message-
>> From: Ananyev, Konstantin
>> Sent: Wednesday,
> -Original Message-
> From: Kavanagh, Mark B
> Sent: Thursday, September 14, 2017 9:35 AM
> To: Hu, Jiayu ; Ananyev, Konstantin
>
> Cc: dev@dpdk.org; Tan, Jianfeng
> Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
> >From: Hu, Jiayu
> >Sent: Thursday, September 14, 2017 2
Hi Jiayu,
> -Original Message-
> From: Hu, Jiayu
> Sent: Thursday, September 14, 2017 7:07 AM
> To: Ananyev, Konstantin
> Cc: dev@dpdk.org; Kavanagh, Mark B ; Tan, Jianfeng
>
> Subject: Re: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
> Hi Konstantin,
>
> On Thu, Sep 14, 2017 at 06:
>From: Hu, Jiayu
>Sent: Thursday, September 14, 2017 7:07 AM
>To: Ananyev, Konstantin
>Cc: dev@dpdk.org; Kavanagh, Mark B ; Tan, Jianfeng
>
>Subject: Re: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
>Hi Konstantin,
>
>On Thu, Sep 14, 2017 at 06:10:37AM +0800, Ananyev, Konstantin wrote:
>>
>> Hi
On 9/13/2017 6:47 PM, Ravi Kumar wrote:
> Signed-off-by: Ravi Kumar
> ---
> config/common_base | 6 ++
> mk/rte.app.mk | 1 +
> 2 files changed, 7 insertions(+)
>
> diff --git a/config/common_base b/config/common_base
> index 5e97a08..fab46b5 100644
> --- a/config/common_base
> +++ b/co
>From: Ananyev, Konstantin
>Sent: Thursday, September 14, 2017 9:40 AM
>To: Kavanagh, Mark B ; Hu, Jiayu
>
>Cc: dev@dpdk.org; Tan, Jianfeng
>Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
>
>
>> -Original Message-
>> From: Kavanagh, Mark B
>> Sent: Thursday, September 14, 2017
On Thu, Sep 14, 2017 at 10:22:23AM +0200, Thomas Monjalon wrote:
> 14/09/2017 04:25, Stephen Hemminger:
> > Bisecting a tree with lots of subtree merges is terrible. That is why Linus
> > rebases and doesn't directly take linux-next
>
> I agree, bisecting with subtree merges is not pleasant at all
> -Original Message-
> From: Kavanagh, Mark B
> Sent: Thursday, September 14, 2017 10:01 AM
> To: Ananyev, Konstantin ; Hu, Jiayu
>
> Cc: dev@dpdk.org; Tan, Jianfeng
> Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
> >From: Ananyev, Konstantin
> >Sent: Thursday, September
On Thu, Sep 14, 2017 at 10:22:23AM +0200, Thomas Monjalon wrote:
> 14/09/2017 04:25, Stephen Hemminger:
> > Bisecting a tree with lots of subtree merges is terrible. That is why Linus
> > rebases and doesn't directly take linux-next
>
> I agree, bisecting with subtree merges is not pleasant at all
14/09/2017 11:03, Bruce Richardson:
> On Thu, Sep 14, 2017 at 10:22:23AM +0200, Thomas Monjalon wrote:
> > 14/09/2017 04:25, Stephen Hemminger:
> > > Bisecting a tree with lots of subtree merges is terrible. That is why
> > > Linus
> > > rebases and doesn't directly take linux-next
> >
> > I agre
Hi Konstantin,
> -Original Message-
> From: Ananyev, Konstantin
> Sent: Thursday, September 14, 2017 4:47 PM
> To: Hu, Jiayu
> Cc: dev@dpdk.org; Kavanagh, Mark B ; Tan,
> Jianfeng
> Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
> Hi Jiayu,
>
> > -Original Message-
On 9/14/2017 8:22 AM, Yong Wang wrote:
> In function ark_config_device(), there are several malloc without null
> point check. Fix it by adding null point check.
>
> Signed-off-by: Yong Wang
Hi Yong,
Thank you for the patch.
I think you have sent new version of the patch because previous one w
> -Original Message-
> From: Hu, Jiayu
> Sent: Thursday, September 14, 2017 10:29 AM
> To: Ananyev, Konstantin
> Cc: dev@dpdk.org; Kavanagh, Mark B ; Tan, Jianfeng
>
> Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
> Hi Konstantin,
>
> > -Original Message-
> > Fr
>From: Ananyev, Konstantin
>Sent: Thursday, September 14, 2017 10:11 AM
>To: Kavanagh, Mark B ; Hu, Jiayu
>
>Cc: dev@dpdk.org; Tan, Jianfeng
>Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
>
>
>> -Original Message-
>> From: Kavanagh, Mark B
>> Sent: Thursday, September 14, 201
http://dpdk.org/tracker/show_bug.cgi?id=3
Bug ID: 3
Summary: Test bug
Product: DPDK
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: Normal
Compo
On 9/14/2017 6:23 AM, santosh wrote:
>
> On Thursday 14 September 2017 09:23 AM, Jianbo Liu wrote:
>> The kernel patch was merged to support pci resource mapping.
>> https://patchwork.kernel.org/patch/9677441/
>>
>> So enable igu_uio in the default arm64 configuration.
>>
>> v2:
>> - keep headli
Hi Mark,
> -Original Message-
> From: Kavanagh, Mark B
> Sent: Thursday, September 14, 2017 4:52 PM
> To: Hu, Jiayu ; Ananyev, Konstantin
>
> Cc: dev@dpdk.org; Tan, Jianfeng
> Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
> >From: Hu, Jiayu
> >Sent: Thursday, September 14,
>On 9/13/2017 6:47 PM, Ravi Kumar wrote:
>> Signed-off-by: Ravi Kumar
>> ---
>> config/common_base | 6 ++
>> mk/rte.app.mk | 1 +
>> 2 files changed, 7 insertions(+)
>>
>> diff --git a/config/common_base b/config/common_base index
>> 5e97a08..fab46b5 100644
>> --- a/config/common_base
> Ferruh Yigit
> 2017/09/14 17:33
>
> to
>
> Yong Wang , shepard.sie...@atomicrules.com,
>
> cc
>
> dev@dpdk.org
>
> subject
>
> Re: [dpdk-dev] [PATCH] net/ark:add null point check
>
> On 9/14/2017 8:22 AM, Yong Wang wrote:
> > In function ark_config_device(), there are several malloc wit
Hi Konstantin and Mark,
> -Original Message-
> From: Ananyev, Konstantin
> Sent: Thursday, September 14, 2017 5:36 PM
> To: Hu, Jiayu
> Cc: dev@dpdk.org; Kavanagh, Mark B ; Tan,
> Jianfeng
> Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
>
>
> > -Original Message-
On 14 September 2017 at 17:41, Ferruh Yigit wrote:
> On 9/14/2017 6:23 AM, santosh wrote:
>>
>> On Thursday 14 September 2017 09:23 AM, Jianbo Liu wrote:
>>> The kernel patch was merged to support pci resource mapping.
>>> https://patchwork.kernel.org/patch/9677441/
>>>
>>> So enable igu_uio in th
On 8/29/2017 5:23 PM, Ferruh Yigit wrote:
> On 8/28/2017 6:13 PM, David Harton (dharton) wrote:
>>
>>
>>> -Original Message-
>>> From: Ferruh Yigit [mailto:ferruh.yi...@intel.com]
>>> Sent: Monday, August 28, 2017 9:27 AM
>>> To: David Harton (dharton) ;
>>> konstantin.anan...@intel.com
>>>
This commit fixes two bugs related to tap devices. The first bug occurs
when executing in testpmd the following flow rule assuming tap device has
4 rx and tx pair queues
"flow create 0 ingress pattern eth / end actions queue index 5 / end"
This command will report on success and will print ""Flow r
vPMD Tx function assumes that after the scatter of the
multi-segment packets the next packet will be a single segment packet.
This is not current as the function can return due to lack of resources
without sending all of the multi-segment mbufs sequence.
Fixes: 6cb559d67b83 ("net/mlx5: add vector
The current Tx error counter counts, according to its description,
the total number of packets not sent when TX ring full. It is reported
to application as part of oerrors field.
The drop due to full ring is not the statistic that should be set on
oerrors field. Such number can be counted by the a
Tx error counter lacks the logic of incrementation, making it useless for
applications.
Fixes: 87011737b715 ("mlx5: add software counters")
Cc: sta...@dpdk.org
Cc: adrien.mazarg...@6wind.com
Signed-off-by: Shahaf Shuler
Acked-by: Yongseok Koh
Acked-by: Nelio Laranjeiro
---
drivers/net/mlx5/ml
Mellanox NICs has a limitation on the number of mbuf segments a multi
segment mbuf can have. The max number depends on the Tx offloads requested.
The current code not enforce such limitation, which might cause
malformed work requests to be written to the device.
This commit adds verification for
This commit fixes two bugs related to tap devices. The first bug occurs
when executing in testpmd the following flow rule assuming tap device has
4 rx and tx pair queues
"flow create 0 ingress pattern eth / end actions queue index 5 / end"
This command will report on success and will print ""Flow r
On 9/14/2017 9:23 AM, Jianbo Liu wrote:
The kernel patch was merged to support pci resource mapping.
https://patchwork.kernel.org/patch/9677441/
So enable igu_uio in the default arm64 configuration.
v2:
- keep headline format
Signed-off-by: Jianbo Liu
---
config/common_armv8a_linuxapp | 2
> -Original Message-
> From: Ferruh Yigit [mailto:ferruh.yi...@intel.com]
> Sent: Thursday, September 14, 2017 6:10 AM
> To: David Harton (dharton) ;
> konstantin.anan...@intel.com
> Cc: dev@dpdk.org; Wenzhuo Lu
> Subject: Re: [dpdk-dev] [PATCH] ixgbe: eliminate duplicate filterlist
> sy
This commit extends the testpmd application with new forwarding engine
that demonstrates the use of ethdev traffic management APIs and softnic
PMD for QoS traffic management.
In this mode, 5-level hierarchical tree of the QoS scheduler is built
with the help of ethdev TM APIs such as shaper profil
Add following CLIs in testpmd application;
- commands to build hierarchical tree for the QoS Scheduler.
- commands for runtime update of the hierarchical tree.
- commands to display TM capability information.
(per port, per hierarchy level and per hierarchy node)
- command to set the packet field
Hi Ravi,
'
On 9/13/2017 11:17 PM, Ravi Kumar wrote:
Signed-off-by: Ravi Kumar
---
doc/guides/nics/axgbe.rst | 214 +
doc/guides/nics/features/axgbe.ini | 18
doc/guides/nics/index.rst | 1 +
3 files changed, 233 insertions(+)
create
Tested-by: Markus Theil
The MSI mode was tested in two setups:
1. With a custom driver I'm currently developing.
2. With i210 based APU2C4 boards and check of link status interrupt in
testpmd.
On 11.09.2017 19:48, Ferruh Yigit wrote:
> On 9/5/2017 1:04 PM, Markus Theil wrote:
>> Interrupt setup
In function ark_config_device(), there are several malloc without null
point check. Fix it by adding null point check.
v2:
* Fix compile error.
Signed-off-by: Yong Wang
---
drivers/net/ark/ark_ethdev.c | 6 ++
drivers/net/ark/ark_pktchkr.c | 4
drivers/net/ark/ark_pktdir.c | 5 +
05/09/2017 16:36, Bruce Richardson:
> On Tue, Sep 05, 2017 at 02:27:58PM +0100, Harry van Haaren wrote:
> > This commit zeros out the elf_info struct at startup of the
> > pmdinfogen code. If it is not zeroed, later in the code gcc
> > produces "may be unused" prints. Clang does not report any
> >
From: David Harton
Some compilers generate warnings for duplicate symbols for the
set of filter lists current defined in ixgbe_ethdev.h.
This commits moves the defintion and declaration to the source
file that actually uses them and provides a function to
initialize the values akin to its flush f
On 9/13/2017 3:26 AM, Yang, Zhiyong wrote:
> Hi Ferruh,
>
>> -Original Message-
>> From: Yigit, Ferruh
>> Sent: Monday, September 11, 2017 6:22 PM
>> To: Yang, Zhiyong ; dev@dpdk.org; Doherty, Declan
>> ; Lu, Wenzhuo
>> Cc: tho...@monjalon.net; hemant.agra...@nxp.com; Hunt, David
>>
>> S
> On Sep 14, 2017, at 4:18 AM, Thomas Monjalon wrote:
>
> 14/09/2017 11:03, Bruce Richardson:
>> On Thu, Sep 14, 2017 at 10:22:23AM +0200, Thomas Monjalon wrote:
>>> 14/09/2017 04:25, Stephen Hemminger:
Bisecting a tree with lots of subtree merges is terrible. That is why Linus
rebases
From: David Harton
Some compilers generate warnings for duplicate symbols for the
set of filter lists current defined in ixgbe_ethdev.h.
This commits moves the definition and declaration to the source
file that actually uses them and provides a function to
initialize the values akin to its flush
On 9/1/2017 3:30 AM, Zhao1, Wei wrote:
> Hi, Ferruh
>
>> -Original Message-
>> From: Yigit, Ferruh
>> Sent: Friday, September 1, 2017 12:54 AM
>> To: Zhao1, Wei ; dev@dpdk.org
>> Subject: Re: [dpdk-dev] [PATCH v2 1/2] net/i40e: fix clear xstats bug in vf
>> port
>>
>> On 8/29/2017 3:28 AM
This removes the dependency on specific Mellanox OFED libraries by
using the upstream rdma-core and linux upstream community code.
---
I have squashed :
[PATCH v2 3/3] “net/mlx5: fix interrupt enable return”
http://dpdk.org/dev/patchwork/patch/28380/
into this patch
a. Compile with rdma-core comm
On 9/14/2017 1:50 PM, David C Harton wrote:
> From: David Harton
>
> Some compilers generate warnings for duplicate symbols for the
> set of filter lists current defined in ixgbe_ethdev.h.
> This commits moves the definition and declaration to the source
> file that actually uses them and provide
Signed-off-by: Shachar Beiser
---
There are only 2 patches left since
I have squashed :
[PATCH v2 3/3] “net/mlx5: fix interrupt enable return”
http://dpdk.org/dev/patchwork/patch/28380/
into [dpdk-dev,v5] net/mlx5: support upstream rdma-core
---
drivers/net/mlx5/mlx5_mac.c | 8 ++-
dr
Fixes: 3cf87e68d97b ("net/mlx5: remove old MLNX OFED 3.3 verification")
Cc: sta...@dpdk.org
Signed-off-by: Shachar Beiser
---
There are only 2 patches left since
I have squashed :
[PATCH v2 3/3] “net/mlx5: fix interrupt enable return”
http://dpdk.org/dev/patchwork/patch/28380/
into [dpdk-dev,v5]
On 9/14/2017 2:34 PM, Shachar Beiser wrote:
> This removes the dependency on specific Mellanox OFED libraries by
> using the upstream rdma-core and linux upstream community code.
Would you mind mentioning what is the difference between "specific
Mellanox OFED libraries" and "upstream rdma-core"? I
On Wed, Sep 13, 2017 at 06:01:25PM +0100, Luca Boccassi wrote:
> On Wed, 2017-09-13 at 15:12 +0100, Bruce Richardson wrote:
> > V3 changes:
> > * used two-digit version numbers when globally versioning
> > libs+drivers
> > * removed symlinks with single-digit version numbers in same case
> > * move
>Hi Ravi,
>'
>On 9/13/2017 11:17 PM, Ravi Kumar wrote:
>> Signed-off-by: Ravi Kumar
>> ---
>> doc/guides/nics/axgbe.rst | 214
>> +
>> doc/guides/nics/features/axgbe.ini | 18
>> doc/guides/nics/index.rst | 1 +
>> 3 files changed, 23
On 9/9/2017 3:47 PM, Zhiyong Yang wrote:
> Modify port_id related code in examples accordingly since port_id
> definition in lib and pmd changes.
>
> Fix some original checkpatch issues and remove some unnecessary
> cast at the same time.
>
> Signed-off-by: Zhiyong Yang
> ---
<...>
>
> diff --gi
Fixes: c33ade1227a5 ("doc: notify ethdev callback process API change")
Cc: sta...@dpdk.org
Signed-off-by: Ferruh Yigit
---
lib/librte_ether/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/librte_ether/Makefile b/lib/librte_ether/Makefile
index c65f1f9a1..16bb2d07
This commit fixes two bugs related to tap devices. The first bug occurs
when executing in testpmd the following flow rule assuming tap device has
4 rx and tx pair queues
"flow create 0 ingress pattern eth / end actions queue index 5 / end"
This command will report on success and will print ""Flow r
Add supported failsafe features to feature list.
Remove stats per queue feature from failsafe feature list since
queue_stats_mapping_set dev op has not implemented yet.
Signed-off-by: Matan Azrad
---
doc/guides/nics/features/failsafe.ini | 15 ++-
1 file changed, 14 insertions(+), 1
>From: Hu, Jiayu
>Sent: Thursday, September 14, 2017 11:01 AM
>To: Ananyev, Konstantin ; Kavanagh, Mark B
>
>Cc: dev@dpdk.org; Tan, Jianfeng
>Subject: RE: [PATCH v3 2/5] gso: add TCP/IPv4 GSO support
>
>Hi Konstantin and Mark,
>
>> -Original Message-
>> From: Ananyev, Konstantin
>> Sent: T
Naming convention for event drivers is "rte_pmd__event_version.map"
Signed-off-by: Bruce Richardson
---
drivers/event/sw/Makefile | 2 +-
.../sw/{rte_pmd_evdev_sw_version.map => rte_pmd_sw_event_version.map} | 0
2 files changed, 1 insertion(+), 1
rename some of the version.map files that don't match the standard naming
convention. For future meson build system, this will save us having to
specify for each driver what the filename of its map file is.
Bruce Richardson (2):
net/bonding: rename map file to standard name
net/xenvirt: rename
Naming convention for net drivers is "rte_pmd__version.map"
Signed-off-by: Bruce Richardson
---
drivers/net/bonding/Makefile| 2 +-
.../net/bonding/{rte_eth_bond_version.map => rte_pmd_bond_version.map} | 0
2 files changed, 1 insertion(+), 1 deletion
Naming convention for net drivers is "rte_pmd__version.map"
Signed-off-by: Bruce Richardson
---
drivers/net/xenvirt/Makefile| 2 +-
.../{rte_eth_xenvirt_version.map => rte_pmd_xenvirt_version.map}| 0
2 files changed, 1 insertion(+), 1 deletion
rename some of the version.map files that don't match the standard naming
convention. For future meson build system, this will save us having to
specify for each driver what the filename of its map file is.
Bruce Richardson (2):
crypto/aesni_mb: rename map file to standard name
crypto/armv8: r
Naming convention for crypto drivers is "rte_pmd__version.map"
Signed-off-by: Bruce Richardson
---
drivers/crypto/aesni_mb/Makefile| 2 +-
.../{rte_pmd_aesni_version.map => rte_pmd_aesni_mb_version.map} | 0
2 files changed, 1 insertion(+), 1 delet
Naming convention for crypto drivers is "rte_pmd__version.map"
Signed-off-by: Bruce Richardson
---
drivers/crypto/armv8/Makefile | 2 +-
.../armv8/{rte_armv8_pmd_version.map => rte_pmd_armv8_version.map} | 0
2 files changed, 1 insertion(+), 1 delet
This patchset refactors the eventdev API to be more flexible
and capable. In particular, the API is capable of returning an
error value if an invalid device, port or attribute ID is passed
in, which was not possible with the previous APIs.
The implementation of this patchset is based on a v1 patch
This commit adds a device attribute function, allowing flexible
fetching of device attributes, like port count or queue count.
The unit tests and .map file are updated to the new function.
Signed-off-by: Harry van Haaren
Acked-by: Jerin Jacob
---
v4: [feedback http://dpdk.org/dev/patchwork/pat
This commit reworks the port functions to retrieve information
about the port, like the enq or deq depths. Note that "port count"
is a device attribute, and is added in a later patch for dev attributes.
Signed-off-by: Harry van Haaren
---
v4: feedback from http://dpdk.org/dev/patchwork/patch/28
This commit adds a generic queue attribute function. It also removes
the previous rte_event_queue_priority() and priority() functions, and
updates the map files and unit tests to use the new attr functions.
Signed-off-by: Harry van Haaren
---
v4: [feedback http://dpdk.org/dev/patchwork/patch/28
This commit adds an attribute to the eventdev, allowing applications
to retrieve if the eventdev is running or stopped. Note that no API
or ABI changes were required in adding the statistic, and code changes
are minimal.
Signed-off-by: Harry van Haaren
Acked-by: Jerin Jacob
---
lib/librte_event
29/08/2017 15:14, Van Haaren, Harry:
> > From: Pavan Nikhilesh [mailto:pbhagavat...@caviumnetworks.com]
> > Sent: Tuesday, August 29, 2017 1:33 PM
> > To: Van Haaren, Harry
> > Cc: dev@dpdk.org; Pavan Nikhilesh
> > Subject: [dpdk-dev] [PATCH v4] service: add API for service count per lcore
> >
>
> From: Van Haaren, Harry
> Sent: Thursday, September 14, 2017 5:09 PM
> To: dev@dpdk.org
> Cc: jerin.ja...@caviumnetworks.com; Van Haaren, Harry
>
> Subject: [PATCH v4 1/4] eventdev: add port attribute function
>
> This commit reworks the port functions to retrieve information
> about the port,
> From: Richardson, Bruce
> Sent: Thursday, September 14, 2017 3:47 PM
> To: Van Haaren, Harry
> Cc: dev@dpdk.org; Richardson, Bruce
> Subject: [PATCH] event/sw: rename map file to standard name
>
> Naming convention for event drivers is "rte_pmd__event_version.map"
>
> Signed-off-by: Bruce Ric
On 9/13/2017 6:47 PM, Ravi Kumar wrote:
> Signed-off-by: Ravi Kumar
<...>
> +#
> +# Export include files
> +#
> +SYMLINK-y-include += axgbe_ethdev.h
> +SYMLINK-y-include += axgbe_rxtx.h
> +SYMLINK-y-include += axgbe_common.h
> +SYMLINK-y-include += axgbe_phy.h
Are these need to be public header?
On 9/14/2017 10:48 AM, Kumar, Ravi1 wrote:
>> On 9/13/2017 6:47 PM, Ravi Kumar wrote:
>>> Signed-off-by: Ravi Kumar
>>> ---
>>> config/common_base | 6 ++
>>> mk/rte.app.mk | 1 +
>>> 2 files changed, 7 insertions(+)
>>>
>>> diff --git a/config/common_base b/config/common_base index
>>>
On 9/13/2017 6:47 PM, Ravi Kumar wrote:
> Signed-off-by: Ravi Kumar
> ---
> doc/guides/nics/axgbe.rst | 214
> +
> doc/guides/nics/features/axgbe.ini | 18
> doc/guides/nics/index.rst | 1 +
> 3 files changed, 233 insertions(+)
> cre
On 9/13/2017 6:47 PM, Ravi Kumar wrote:
> Signed-off-by: Ravi Kumar
> ---
> MAINTAINERS | 7 ++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index a0cd75e..0110d54 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -308,6 +308,12 @@ F: drive
On 9/14/2017 4:57 PM, Bruce Richardson wrote:
> rename some of the version.map files that don't match the standard naming
> convention. For future meson build system, this will save us having to
> specify for each driver what the filename of its map file is.
>
> Bruce Richardson (2):
> net/bondi
> -Original Message-
> From: Yigit, Ferruh
> Sent: Thursday, September 14, 2017 5:34 PM
> To: Richardson, Bruce ; Tan, Jianfeng
> ; Doherty, Declan
> Cc: dev@dpdk.org
> Subject: Re: [PATCH 0/2] have net drivers use a standard map file name
> format
>
> On 9/14/2017 4:57 PM, Bruce Richar
On Thu, 14 Sep 2017 11:11:56 +0200
Nélio Laranjeiro wrote:
> On Thu, Sep 14, 2017 at 10:22:23AM +0200, Thomas Monjalon wrote:
> > 14/09/2017 04:25, Stephen Hemminger:
> > > Bisecting a tree with lots of subtree merges is terrible. That is why
> > > Linus
> > > rebases and doesn't directly take
On Sun, 2017-07-23 at 17:15 +0800, Wei Dai wrote:
> This patch adds a new eth_dev layer API function rte_eth_dev_reset(),
> which a DPDK application can call to reset a NIC and keep its port id
> afterwards. It means that all software resources allocated in the
> ethdev
> layer are kept, and softwa
On 9/12/2017 3:43 AM, Jiayu Hu wrote:
> Generic Segmentation Offload (GSO) is a SW technique to split large
> packets into small ones. Akin to TSO, GSO enables applications to
> operate on large packets, thus reducing per-packet processing overhead.
>
> To enable more flexibility to applications,
On 9/12/2017 3:43 AM, Jiayu Hu wrote:
> This patch adds GSO support to the csum forwarding engine. Oversized
> packets transmitted over a GSO-enabled port will undergo segmentation
> (with the exception of packet-types unsupported by the GSO library).
> GSO support is disabled by default.
>
> GSO
1 - 100 of 123 matches
Mail list logo