From: Ananyev, Konstantin
> >
> > From: Ferruh Yigit
> > > On 11/8/2019 11:56 AM, Matan Azrad wrote:
> > > >
> > > >
> > > > From: Ferruh Yigit
> > > >> On 11/8/2019 10:10 AM, Matan Azrad wrote:
> > > >>>
> > > >>>
> > > >>> From: Ferruh Yigit
> > > On 11/8/2019 6:54 AM, Matan Azrad wrote:
>
On 11/07, Wang ShougangX wrote:
>To avoid memzone reserve failure and memory leak, following
>resources management should be added.
>- Check if the FDIR Memzone already exists before reserving.
In what scenario it will reserve FDIR memzone twice?
>- Free FDIR memzone when teardown and other failu
On Fri, Nov 08, 2019 at 03:44:07PM -0800, Stephen Hemminger wrote:
> When I create a virtio-user device with rte_hotplug it creates a kernel
> device (ie vtap0).
> This is normal an the device has ifindex N.
>
> But later when device is configured an started the original vtap0 device is
> delete
Retrieve burst mode information according to the selected Rx/Tx mode and
offloads.
Signed-off-by: Sunil Kumar Kori
---
v4:
- Review comments incorporated.
v3:
- Rebased the patch over patches.dpdk.org/patch/62368/
v2:
- Rebased the patch on latest commit.
- Update feature matrix for the suppo
Hi, Xiaolong
> -Original Message-
> From: Ye, Xiaolong
> Sent: Monday, November 11, 2019 4:10 PM
> To: Wang, ShougangX
> Cc: dev@dpdk.org; Yang, Qiming ; Xing, Beilei
> ; sta...@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH v2 1/4] net/ice: fix memzone reserve and
> release in FDIR
>
> On 11
On 11/07, Di ChenxuX wrote:
>testpmd will occur infinite loops when device hotplug remove.
>We can fix the issue by using the pci generic remove function
>
>Fixes: f2f4990eff94 ("net/ixgbe: release port upon close")
>
>Signed-off-by: Di ChenxuX
>
>v2:
>reverted the code about ixgbe_vf_representor_
On 11/07, Di ChenxuX wrote:
>testpmd will occur infinite loops when device hotplug remove.
>We can fix the issue by using the pci generic remove function
>
>Fixes: ac89d46096d5 ("net/i40e: release port upon close")
>
>Signed-off-by: Di ChenxuX
>
>v3:
>reverted the code about i40e_vf_representor_un
Hi,
> -Original Message-
> From: Ye, Xiaolong
> Sent: Monday, November 11, 2019 4:42 PM
> To: Di, ChenxuX
> Cc: dev@dpdk.org; Yang, Qiming
> Subject: Re: [dpdk-dev] [PATCH v2] net/ixgbe: fix device hotplug remove
>
> On 11/07, Di ChenxuX wrote:
> >testpmd will occur infinite loops when
On 11/11, Di, ChenxuX wrote:
>Hi,
>
>> -Original Message-
>> From: Ye, Xiaolong
>> Sent: Monday, November 11, 2019 4:42 PM
>> To: Di, ChenxuX
>> Cc: dev@dpdk.org; Yang, Qiming
>> Subject: Re: [dpdk-dev] [PATCH v2] net/ixgbe: fix device hotplug remove
>>
>> On 11/07, Di ChenxuX wrote:
>>
Hi, simei
On 11/07, Simei Su wrote:
>This patch fixes core dump issue when entering safe mode with a
>wrong ice.pkg. In safe mode, rte_flow is not supported and it
>won't initialize any flow engine.
>
>Fixes: 7615a6895009 ("net/ice: rework for generic flow enabling")
>
>Signed-off-by: Simei Su
>-
> -Original Message-
> From: Ye, Xiaolong
> Sent: Monday, November 11, 2019 5:00 PM
> To: Di, ChenxuX
> Cc: dev@dpdk.org; Yang, Qiming
> Subject: Re: [dpdk-dev] [PATCH v2] net/ixgbe: fix device hotplug remove
>
> On 11/11, Di, ChenxuX wrote:
> >Hi,
> >
> >> -Original Message-
Sorry, I didn't explain it clearly, and I will explain this problem step by
step.
Precondition, we have a 64K page size system and two 82599 NICs. The memory
required for each NIC is as follows:
Map0 : size = 0x0040
Map1 : size = 0x4000
1. Primary process start, process
The older version (e.g. version 7.4.0 ) of GNU C compiler for the armhf
architecture doesn't support the flag '-Wno-address-of-packed-member',
so remove this flag for aarch32.
Fixes: a385972c3675 ("mk: disable warning for packed member pointer")
Cc: sta...@dpdk.org
Signed-off-by: Phil Yang
Revie
Add a guidance for aarch64 natively build 32-bit aarch32 DPDK.
Cc: sta...@dpdk.org
Signed-off-by: Phil Yang
Reviewed-by: Gavin Hu
Tested-by: Joyce Kong
---
.../linux_gsg/cross_build_dpdk_for_arm64.rst | 36 ++
1 file changed, 30 insertions(+), 6 deletions(-)
diff -
Updates to the ABI versioning guide, to account for the changes to the DPDK
ABI/API policy. Fixes for references to abi versioning and policy guides.
Signed-off-by: Ray Kinsella
Acked-by: John Mcnamara
Acked-by: Stephen Hemminger
---
doc/guides/contributing/abi_policy.rst | 15 +-
doc/gui
TL;DR abbreviation:
A major ABI version that all DPDK releases during an agreed period support. ABI
versioning is managed at a project-level, in place of library-level management.
ABI changes to add new features are permitted, as long as ABI compatibility with
the major ABI version is maintained.
Separate versioning.rst into abi versioning and abi policy guidance, in
preparation for adding more detail to the abi policy. Add an entry to the
maintainer file for the abi policy.
Signed-off-by: Ray Kinsella
Acked-by: John Mcnamara
Acked-by: Stephen Hemminger
---
MAINTAINERS
This policy change introduces major ABI versions, these are
declared every year, typically aligned with the LTS release
and are supported by subsequent releases in the following year.
This change is intended to improve ABI stabilty for those projects
consuming DPDK.
Signed-off-by: Ray Kinsella
Ac
On Fri, Nov 08, 2019 at 10:00:35AM -0800, Stephen Hemminger wrote:
> The #ifdef to conditionally include on BSD
> is unnecessary. It is harmless to include the header on other
> OS's. An extra include is better than an #ifdef.
>
> Signed-off-by: Stephen Hemminger
> ---
> app/test-pmd/cmdline.c
There is a rte_flow API which expands a RSS flow pattern to multipile
patterns according to the RSS hash types in the RSS action
configuration.
Aa part of the expansion, detection of the last item of the flow uses
the "next proto" field of the last configured item in the pattern list.
Wrongly, the
On 11/11/2019 5:02 AM, Jerin Jacob wrote:
> On Mon, Nov 11, 2019 at 10:26 AM Pavan Nikhilesh Bhagavatula
> wrote:
>>
>>> On Fri, Nov 8, 2019 at 7:24 PM Ananyev, Konstantin
>>> wrote:
> -Original Message-
> From: dev On Behalf Of Ferruh Yigit
> Sent: Thursday, N
On Mon, Nov 11, 2019 at 06:34:20PM +0800, Phil Yang wrote:
> The older version (e.g. version 7.4.0 ) of GNU C compiler for the armhf
> architecture doesn't support the flag '-Wno-address-of-packed-member',
> so remove this flag for aarch32.
>
> Fixes: a385972c3675 ("mk: disable warning for packed
On Mon, 19-11-11, 10:42, Matan Azrad wrote:
> There is a rte_flow API which expands a RSS flow pattern to multipile
> patterns according to the RSS hash types in the RSS action
> configuration.
>
> Aa part of the expansion, detection of the last item of the flow uses
> the "next proto" field of th
On 11/11/2019 7:26 AM, Thomas Monjalon wrote:
> In order to allow smooth addition of features without breaking
> ABI compatibility, some space is reserved in several core structs
> of ethdev API.
>
> The struct rte_eth_dev and rte_eth_dev_data are supposed
> to be used internally only, but there i
On 08/11/2019 17:38, Thomas Monjalon wrote:
> 08/11/2019 18:12, Ray Kinsella:
>> On 08/11/2019 17:11, Thomas Monjalon wrote:
>>> 08/11/2019 13:46, Ray Kinsella:
+#. The ABI version is managed at a project level in DPDK, with the ABI
version
+ reflected in all library's soname.
On 11/9/2019 6:20 PM, Matan Azrad wrote:
> Hi
>
> From: Ferruh Yigit
>> On 11/8/2019 11:56 AM, Matan Azrad wrote:
>>>
>>>
>>> From: Ferruh Yigit
On 11/8/2019 10:10 AM, Matan Azrad wrote:
>
>
> From: Ferruh Yigit
>> On 11/8/2019 6:54 AM, Matan Azrad wrote:
>>> Hi
>>>
>>
On Fri, Nov 08, 2019 at 08:55:52PM +0100, Thomas Monjalon wrote:
> 08/11/2019 20:32, David Marchand:
> > The LTO job using gcc-7 has two issues at the moment:
> > - warnings about implicit fallthroughs trigger build errors:
> >
> > In file included from ...common/include/rte_memory.h:22:0,
> >
From: Ferruh Yigit
> On 11/9/2019 6:20 PM, Matan Azrad wrote:
> > Hi
> >
> > From: Ferruh Yigit
> >> On 11/8/2019 11:56 AM, Matan Azrad wrote:
> >>>
> >>>
> >>> From: Ferruh Yigit
> On 11/8/2019 10:10 AM, Matan Azrad wrote:
> >
> >
> > From: Ferruh Yigit
> >> On 11/8/2019 6:5
Allow to configure the default MAC address of a VF
via its representor port in the host.
An API was proposed to specify explicitly the VF as a
target: https://patches.dpdk.org/patch/62176/
It has been rejected by the technical board in order to
keep compatibility with behavior in Intel PMDs.
http
> -Original Message-
> From: Raslan Darawsheh
> Sent: Monday, November 11, 2019 13:40
> To: Slava Ovsiienko
> Cc: Thomas Monjalon ; dev@dpdk.org
> Subject: [PATCH v2] net/mlx5: set VF MAC address from host
>
> Allow to configure the default MAC address of a VF via its representor port in
Separate versioning.rst into abi versioning and abi policy guidance, in
preparation for adding more detail to the abi policy. Add an entry to the
maintainer file for the abi policy.
Signed-off-by: Ray Kinsella
Acked-by: John Mcnamara
Acked-by: Stephen Hemminger
---
MAINTAINERS
TL;DR abbreviation:
A major ABI version that all DPDK releases during an agreed period support. ABI
versioning is managed at a project-level, in place of library-level management.
ABI changes to add new features are permitted, as long as ABI compatibility with
the major ABI version is maintained.
This policy change introduces major ABI versions, these are
declared every year, typically aligned with the LTS release
and are supported by subsequent releases in the following year.
This change is intended to improve ABI stabilty for those projects
consuming DPDK.
Signed-off-by: Ray Kinsella
Ac
Updates to the ABI versioning guide, to account for the changes to the DPDK
ABI/API policy. Fixes for references to abi versioning and policy guides.
Signed-off-by: Ray Kinsella
Acked-by: John Mcnamara
Acked-by: Stephen Hemminger
---
doc/guides/contributing/abi_policy.rst | 15 +-
doc/gui
Retrieve burst mode information according to the selected Rx/Tx mode and
offloads.
Signed-off-by: Sunil Kumar Kori
---
v5:
- Removed redundent code using flag to string mapping.
v4:
- Review comments incorporated.
v3:
- Rebased the patch over patches.dpdk.org/patch/62368/
v2:
- Rebased the pa
Retrieve burst mode information according to the selected Rx/Tx mode and
offloads.
Signed-off-by: Sunil Kumar Kori
---
v5:
- Removed redundent code using flag to string mapping.
v4:
- Review comments incorporated.
v3:
- Rebased the patch over patches.dpdk.org/patch/62368/
v2:
- Rebased the pa
On 11/11/2019 11:33 AM, Matan Azrad wrote:
>
>
> From: Ferruh Yigit
>> On 11/9/2019 6:20 PM, Matan Azrad wrote:
>>> Hi
>>>
>>> From: Ferruh Yigit
On 11/8/2019 11:56 AM, Matan Azrad wrote:
>
>
> From: Ferruh Yigit
>> On 11/8/2019 10:10 AM, Matan Azrad wrote:
>>>
>>>
>>
On Mon, Nov 11, 2019 at 12:32 PM Bruce Richardson
wrote:
>
> On Fri, Nov 08, 2019 at 08:55:52PM +0100, Thomas Monjalon wrote:
> > 08/11/2019 20:32, David Marchand:
> > > The LTO job using gcc-7 has two issues at the moment:
> > > - warnings about implicit fallthroughs trigger build errors:
> > >
>
On 11-Nov-19 9:37 AM, Wangyu (Eric) wrote:
Sorry, I didn't explain it clearly, and I will explain this problem step by
step.
Precondition, we have a 64K page size system and two 82599 NICs. The memory
required for each NIC is as follows:
Map0 : size = 0x0040
Map1 : size = 0x00
On 11/11/2019 7:00 AM, Slava Ovsiienko wrote:
>> -Original Message-
>> From: Bing Zhao
>> Sent: Sunday, November 10, 2019 18:37
>> To: Slava Ovsiienko ; Raslan Darawsheh
>>
>> Cc: Ori Kam ; dev@dpdk.org
>> Subject: [PATCH] net/mlx5: fix compiling without definition
>>
>> When compiling th
From: Pavan Nikhilesh
Add new Rx offload flags `DEV_RX_OFFLOAD_RSS_HASH` These flags can be used
to enable/disable PMD writes to rte_mbuf fields `hash.rss` and also
`ol_flags:PKT_RX_RSS`.
Add new packet type set function `rte_eth_dev_set_ptypes`,
allows application to inform PMDs about the packe
From: Pavan Nikhilesh
Add `rte_eth_dev_set_ptypes` function that will allow the application
to inform the PMD about reduced range of packet types to handle.
Based on the ptypes set PMDs can optimize their Rx path.
-If application doesn’t want any ptype information it can call
`rte_eth_dev_set_pt
From: Pavan Nikhilesh
Some PMDs cannot work when certain offloads are enable/disabled, as a
workaround PMDs auto enable/disable offloads internally and expose it
through dev->data->dev_conf.rxmode.offloads.
After device specific dev_configure is called compare the requested
offloads to the offlo
From: Pavan Nikhilesh
Add new Rx offload flag `DEV_RX_OFFLOAD_RSS_HASH` which can be used to
enable/disable PMDs write to `rte_mbuf::hash::rss`.
PMDs notify the validity of `rte_mbuf::hash:rss` to the applcation
by enabling `PKT_RX_RSS_HASH ` flag in `rte_mbuf::ol_flags`.
Signed-off-by: Pavan Ni
From: Pavan Nikhilesh
Add command to set supported ptype mask.
Usage:
set port ptype_mask
Signed-off-by: Pavan Nikhilesh
---
app/test-pmd/cmdline.c | 84 +
doc/guides/testpmd_app_ug/testpmd_funcs.rst | 7 ++
2 files changed, 91 insertions(+)
From: Pavan Nikhilesh
Split port initialization sequence based on event device capabilities.
Signed-off-by: Pavan Nikhilesh
---
examples/eventdev_pipeline/main.c | 128 -
.../pipeline_worker_generic.c | 129 ++
.../eventdev_pipeline/p
From: Pavan Nikhilesh
Add DEV_RX_OFFLOAD_RSS_HASH flag for all PMDs that support RSS hash
delivery.
Signed-off-by: Pavan Nikhilesh
Reviewed-by: Andrew Rybchenko
Reviewed-by: Hemant Agrawal
Acked-by: Jerin Jacob
Acked-by: Ajit Khaparde
---
drivers/net/bnxt/bnxt_ethdev.c | 6 +-
d
From: Pavan Nikhilesh
Disable packey type parsing on port init, user can enable ptype parsing
by issuing set ptype command.
Signed-off-by: Pavan Nikhilesh
---
app/test-pmd/cmdline.c | 2 ++
app/test-pmd/testpmd.c | 12
app/test-pmd/testpmd.h | 1 +
3 files changed, 15 insertions
From: Pavan Nikhilesh
Since pipeline_generic uses `rte_mbuf::hash::rss` add the new Rx offload
flag `DEV_RX_OFFLOAD_RSS_HASH` to inform PMD to copy the RSS hash result
into the mbuf.
Signed-off-by: Pavan Nikhilesh
---
examples/eventdev_pipeline/pipeline_worker_generic.c | 3 +++
1 file changed
From: Pavan Nikhilesh
Disable packet type parsing as l2fwd doesn't rely on packet types.
Signed-off-by: Pavan Nikhilesh
---
examples/l2fwd/Makefile| 2 ++
examples/l2fwd/main.c | 5 +
examples/l2fwd/meson.build | 2 ++
3 files changed, 9 insertions(+)
diff --git a/examples/l2fwd/
From: Pavan Nikhilesh
Update port rx_offload command to include RSS_HASH
testpmd> port config 0 rx_offload rss_hash on
Signed-off-by: Pavan Nikhilesh
---
app/test-pmd/cmdline.c | 4 ++--
doc/guides/testpmd_app_ug/testpmd_funcs.rst | 2 +-
2 files changed, 3 insert
After otx2_nix_register_cq_irqs() is called and the IRQs are setup,
otx2_nix_unregister_cq_irqs() need to be called in the subsequent error
exit paths.
Fixes: d34db5ccbf30 ("net/octeontx2: fix driver reconfiguration")
Signed-off-by: Anoob Joseph
---
drivers/net/octeontx2/otx2_ethdev.c | 4 ++--
>Add same tag as other files in this example.
>
>Signed-off-by: Stephen Hemminger
Acked-by: Pavan Nikhilesh
>---
> examples/l2fwd-event/l2fwd_common.c | 4
> examples/l2fwd-event/l2fwd_poll.c | 4
> 2 files changed, 8 insertions(+)
>
>diff --git a/examples/l2fwd-event/l2fwd_common.c b
From: Ferruh Yigit
> On 11/11/2019 11:33 AM, Matan Azrad wrote:
> >
> >
> > From: Ferruh Yigit
> >> On 11/9/2019 6:20 PM, Matan Azrad wrote:
> >>> Hi
> >>>
> >>> From: Ferruh Yigit
> On 11/8/2019 11:56 AM, Matan Azrad wrote:
> >
> >
> > From: Ferruh Yigit
> >> On 11/8/2019 10
On Mon, Nov 11, 2019 at 01:27:23PM +0100, David Marchand wrote:
> On Mon, Nov 11, 2019 at 12:32 PM Bruce Richardson
> wrote:
> >
> > On Fri, Nov 08, 2019 at 08:55:52PM +0100, Thomas Monjalon wrote:
> > > 08/11/2019 20:32, David Marchand:
> > > > The LTO job using gcc-7 has two issues at the moment
On 1 Nov 2019, at 9:12, Eelco Chaudron wrote:
+ /*
+* Even though the device reset is successful disabling
promiscuous
+* mode might not always succeed, causing enabling it after
reset
to
I think we need to root cause why fail to disable promiscuous
mode
and
try t
Hi Jerin,
> -Original Message-
> From: Jerin Jacob Kollanukkaran
> Sent: Thursday, October 31, 2019 2:02 AM
> To: dev@dpdk.org
> Cc: Olivier Matz ; Andrew Rybchenko
> ; David Christensen ;
> bruce.richard...@intel.com; konstantin.anan...@intel.com;
> hemant.agra...@nxp.com; Shahaf Shuler
Hi,
> -Original Message-
> From: dev On Behalf Of Raslan Darawsheh
> Sent: Monday, November 11, 2019 1:40 PM
> To: Slava Ovsiienko
> Cc: Thomas Monjalon ; dev@dpdk.org
> Subject: [dpdk-dev] [PATCH v2] net/mlx5: set VF MAC address from host
>
> Allow to configure the default MAC address
RSS action validation function checks the queues included in RSS
to make sure they are valid.
A Queue is considered valid if the pointer to the queue (item at
location queue-index of RxQ array) is not a null value.
The queue indices are not checked. If a large value is entered as
queue index, using
Function mlx5_rxq_get_type() uses the input queue index, without
checking it, as index to the Rx queues array.
If this value is too high, it will result in pointer to memory out
of Rx queues array bounds.
This patch adds check of the input queue index, to verify it is valid.
Fixes: 09775c04aace (
On 11/11/2019 1:19 PM, pbhagavat...@marvell.com wrote:
> From: Pavan Nikhilesh
>
> Add command to set supported ptype mask.
> Usage:
> set port ptype_mask
>
> Signed-off-by: Pavan Nikhilesh
<...>
> +set port supported ptypes
> +~
> +
> +set packet types classif
On 11/11/2019 1:19 PM, pbhagavat...@marvell.com wrote:
> From: Pavan Nikhilesh
>
> Disable packey type parsing on port init, user can enable ptype parsing
> by issuing set ptype command.
I will update release notes to add one line sentences to document the behavior
change while merging, please s
>On 11/11/2019 1:19 PM, pbhagavat...@marvell.com wrote:
>> From: Pavan Nikhilesh
>>
>> Add command to set supported ptype mask.
>> Usage:
>> set port ptype_mask
>>
>> Signed-off-by: Pavan Nikhilesh
>
><...>
>
>> +set port supported ptypes
>> +~
>> +
>> +set packet t
On 11/11/2019 1:19 PM, pbhagavat...@marvell.com wrote:
> diff --git a/drivers/net/mlx4/mlx4.c b/drivers/net/mlx4/mlx4.c
> index 931e4f4fe..6bc85a3d5 100644
> --- a/drivers/net/mlx4/mlx4.c
> +++ b/drivers/net/mlx4/mlx4.c
> @@ -248,6 +248,8 @@ mlx4_dev_configure(struct rte_eth_dev *dev)
> struc
>On 11/11/2019 1:19 PM, pbhagavat...@marvell.com wrote:
>> diff --git a/drivers/net/mlx4/mlx4.c b/drivers/net/mlx4/mlx4.c
>> index 931e4f4fe..6bc85a3d5 100644
>> --- a/drivers/net/mlx4/mlx4.c
>> +++ b/drivers/net/mlx4/mlx4.c
>> @@ -248,6 +248,8 @@ mlx4_dev_configure(struct rte_eth_dev *dev)
>>
On 11/4/2019 11:03 AM, Jakub Grajciar wrote:
> Zero-copy slave support for memif PMD.
> Slave interface exposes DPDK memory to
> master interface. Only single file segments
> are supported (EAL option --single-file-segments).
>
> Signed-off-by: Jakub Grajciar
> ---
> doc/guides/nics/memif.rst
11/11/2019 16:21, Ferruh Yigit:
> On 11/4/2019 11:03 AM, Jakub Grajciar wrote:
> > Zero-copy slave support for memif PMD.
> > Slave interface exposes DPDK memory to
> > master interface. Only single file segments
> > are supported (EAL option --single-file-segments).
> >
> > Signed-off-by: Jakub G
The JUMBO frame handling in dpaa2_dev_mtu_set api was not correct.
When frame_size is greater than RTE_ETHER_MAX_LEN, the
intention is to add JUMBO flag in rx offload while it was resetting
all other flags other than JUMBO as AND operator was used instead of OR.
Fixes: 0ebce6129bc6 ("net/dpaa2: su
On 11/11/2019 1:19 PM, pbhagavat...@marvell.com wrote:
> From: Pavan Nikhilesh
>
> Add new Rx offload flags `DEV_RX_OFFLOAD_RSS_HASH` These flags can be used
> to enable/disable PMD writes to rte_mbuf fields `hash.rss` and also
> `ol_flags:PKT_RX_RSS`.
>
> Add new packet type set function `rte_e
On Mon, Nov 11, 2019 at 4:21 PM Ferruh Yigit wrote:
>
> On 11/4/2019 11:03 AM, Jakub Grajciar wrote:
> > Zero-copy slave support for memif PMD.
> > Slave interface exposes DPDK memory to
> > master interface. Only single file segments
> > are supported (EAL option --single-file-segments).
> >
> >
11/11/2019 16:36, Sachin Saxena:
> The JUMBO frame handling in dpaa2_dev_mtu_set api was not correct.
> When frame_size is greater than RTE_ETHER_MAX_LEN, the
> intention is to add JUMBO flag in rx offload while it was resetting
> all other flags other than JUMBO as AND operator was used instead of
> -Original Message-
> From: Thomas Monjalon
> Sent: Monday, November 11, 2019 9:27 PM
> To: Sachin Saxena
> Cc: dev@dpdk.org; ferruh.yi...@intel.com; sta...@dpdk.org
> Subject: Re: [PATCH v1] net/dpaa2: fixes issue of accidentally resetting rx
> offloads flags
>
> 11/11/2019 16:36, Sa
The JUMBO frame handling in dpaa2_dev_mtu_set api was not correct.
When frame_size is greater than RTE_ETHER_MAX_LEN, the
intention is to add JUMBO flag in rx offload while it was resetting
all other flags other than JUMBO as AND operator was used instead of OR.
Fixes: 0ebce6129bc6 ("net/dpaa2: su
On 11/11/2019 10:54 AM, Ferruh Yigit wrote:
> On 11/11/2019 7:26 AM, Thomas Monjalon wrote:
>> In order to allow smooth addition of features without breaking
>> ABI compatibility, some space is reserved in several core structs
>> of ethdev API.
>>
>> The struct rte_eth_dev and rte_eth_dev_data are
On 11/11/2019 4:08 PM, Sachin Saxena wrote:
> The JUMBO frame handling in dpaa2_dev_mtu_set api was not correct.
> When frame_size is greater than RTE_ETHER_MAX_LEN, the
> intention is to add JUMBO flag in rx offload while it was resetting
> all other flags other than JUMBO as AND operator was used
On 10/30/2019 2:12 AM, lidejun wrote:
> Hi All:
> This patch fixes a issue when DPDK 802.3ad bonding rx_machine enters EXPIRED
> state, but the opposite SWITCH lacp ignores distributing and collecting bit,
> so the SWITCH still sends packets to DPDK and all these packets are dropped.
Hi lidejun,
On 10/18/2019 5:24 PM, Yigit, Ferruh wrote:
> On 8/8/2019 1:28 PM, Nilanjan Sarkar wrote:
>> This api is similar like api `rte_eth_tx_buffer` except it
>> does not attempt to flush the buffer in case buffer is full.
>> The advantage is that, this api does not need port id and
>> queue id. In case p
On 10/31/2019 5:53 PM, Ferruh Yigit wrote:
> On 10/8/2019 3:23 PM, Yigit, Ferruh wrote:
>> On 7/30/2019 4:59 PM, Thomas Monjalon wrote:
>>> Since the concept of representors was introduced,
>>> we do not need any specific API for VF ports.
>>> Any VF port should be able to be configured through
>>>
*LAST CALL! *
*DPDK Summit North America 2019* is this week, November 12-13. This is your
last chance to join the community in Mountain View, CA at the Computer
History Museum to connect and learn about the latest use cases,
applications, and trends in Data Plane development and acceleration.
Che
On 11/11/2019 10:42 AM, Matan Azrad wrote:
> There is a rte_flow API which expands a RSS flow pattern to multipile
> patterns according to the RSS hash types in the RSS action
> configuration.
>
> Aa part of the expansion, detection of the last item of the flow uses
> the "next proto" field of the
11/11/2019 17:56, Ferruh Yigit:
> On 10/18/2019 5:24 PM, Yigit, Ferruh wrote:
> > On 8/8/2019 1:28 PM, Nilanjan Sarkar wrote:
> >> This api is similar like api `rte_eth_tx_buffer` except it
> >> does not attempt to flush the buffer in case buffer is full.
> >> The advantage is that, this api does n
> -Original Message-
> From: dev On Behalf Of Matan Azrad
> Sent: Monday, November 11, 2019 12:42 PM
> To: dev@dpdk.org
> Cc: Ori Kam ; Jack Min
> Subject: [dpdk-dev] [PATCH] ethdev: fix last item detection on RSS flow
> expand
>
> There is a rte_flow API which expands a RSS flow patt
This series implements support and use of API for configuration and
validation of max size for LRO aggregated packet.
v2: Updated ethdev patch per review comments.
v3: Updated ethdev and testpmd patches per review comments.
v4: Updated ethdev patch for QEDE PMD per review comments.
v5: Updated eth
This patch implements use of the API for LRO aggregated packet
max size.
Rx queue create is updated to use the relevant configuration.
Documentation is updated accordingly.
Signed-off-by: Dekel Peled
Acked-by: Viacheslav Ovsiienko
Acked-by: Matan Azrad
---
doc/guides/nics/mlx5.rst | 2 ++
This patch implements [1], to support API for configuration and
validation of max size for LRO aggregated packet.
API change notice [2] is removed, and release notes for 19.11
are updated accordingly.
[1] http://patches.dpdk.org/patch/58217/
[2] http://patches.dpdk.org/patch/57492/
Signed-off-by:
This patch implements use of the API for LRO aggregated packet
max size.
It adds command-line and runtime commands to configure this value,
and adds option to show the supported value.
Documentation is updated accordingly.
Signed-off-by: Dekel Peled
Acked-by: Bernard Iremonger
Acked-by: Matan Az
Use an explicit statement fallthrough attibute,
rather than relying on having correct fallthrough comments
(that match the magic set of regex which depends on the value
of compiler flags). This is more robust and safer.
Introduces __rte_fallthrough and fixes existing code
to use it.
Motivated aft
Remove trailing blank lines. They serve no purpose and are just
editor leftovers.
These can cause git to complain about whitespace errors during merges.
Signed-off-by: Stephen Hemminger
---
Makefile| 1 -
app/test/meson.build
Checked and acked.
Best,
Ori
> -Original Message-
> From: Ferruh Yigit
> Sent: Monday, November 11, 2019 7:14 PM
> To: Matan Azrad ; dev@dpdk.org
> Cc: Ori Kam ; Jack Min
> Subject: Re: [dpdk-dev] [PATCH] ethdev: fix last item detection on RSS flow
> expand
>
> On 11/11/2019 10:42 AM, M
> -Original Message-
> From: Su, Simei
> Sent: Monday, November 11, 2019 3:55 PM
> To: Zhang, Qi Z ; Xing, Beilei ;
> Ye, Xiaolong
> Cc: dev@dpdk.org; Su, Simei
> Subject: [PATCH v2] net/ice: fix RSS rule destroy
>
> This patch changes RSS rule destroy interface from ice_rem_vsi_rss_
On 11/11/2019 5:47 PM, Dekel Peled wrote:
> This patch implements [1], to support API for configuration and
> validation of max size for LRO aggregated packet.
> API change notice [2] is removed, and release notes for 19.11
> are updated accordingly.
>
> [1] http://patches.dpdk.org/patch/58217/
>
On 11/11/2019 5:47 PM, Dekel Peled wrote:
> This patch implements use of the API for LRO aggregated packet
> max size.
> It adds command-line and runtime commands to configure this value,
> and adds option to show the supported value.
> Documentation is updated accordingly.
>
> Signed-off-by: Deke
On 11/11/2019 5:47 PM, Dekel Peled wrote:
> This series implements support and use of API for configuration and
> validation of max size for LRO aggregated packet.
>
> v2: Updated ethdev patch per review comments.
> v3: Updated ethdev and testpmd patches per review comments.
> v4: Updated ethdev p
Hi Eelco,
Seems you missed this mail.
Thanks,
Xiao
> -Original Message-
> From: Zhang, Xiao
> Sent: Wednesday, November 6, 2019 12:58 PM
> To: Eelco Chaudron ; Xing, Beilei
>
> Cc: Zhang, Qi Z ; dev@dpdk.org
> Subject: RE: [dpdk-dev] [PATCH] net/i40e: force promiscuous state after VF
>
On 11/11/2019 5:41 PM, Ori Kam wrote:
>
>
>> -Original Message-
>> From: dev On Behalf Of Matan Azrad
>> Sent: Monday, November 11, 2019 12:42 PM
>> To: dev@dpdk.org
>> Cc: Ori Kam ; Jack Min
>> Subject: [dpdk-dev] [PATCH] ethdev: fix last item detection on RSS flow
>> expand
>>
>> Ther
On 11/11, Simei Su wrote:
>This patch changes RSS rule destroy interface from ice_rem_vsi_rss_cfg()
>to ice_rem_rss_cfg(). To coordinate with input set change, it should
>destroy a specific flow rule but not all vsi cfg.
>
>Fixes: 5ad3db8d4bdd ("net/ice: enable advanced RSS")
>
>Signed-off-by: Sime
On 11/11, Qiming Yang wrote:
>This patch fixes a kernel driver link status issue by recovering
>link status when device stops.
>
>Fixes: e6161345d8a9 ("net/ice: support link status change")
>Cc: sta...@dpdk.org
>
>Signed-off-by: Qiming Yang
>---
> drivers/net/ice/ice_ethdev.c | 28
> -Original Message-
> From: Rong, Leyi
> Sent: Thursday, November 7, 2019 1:22 PM
> To: Lu, Wenzhuo ; Zhang, Qi Z
> ; Ye, Xiaolong
> Cc: dev@dpdk.org; Rong, Leyi
> Subject: [PATCH] net/iavf: set CMD bit2 to 1 in Tx Desc of AVX Tx path
>
> Fix iavf vf_checksum_sw case fail in X710/XX
NIC address conflicts on 64K pagesize when using multiple NICs,
as system will mmap 64K pagesize for NIC,
but dev->mem_resource[i].len is 16K.
Signed-off-by: beard-627
Signed-off-by: Wangyu (Eric)
Acked-by: Wei Hu
Acked-by: Min Hu
---
drivers/bus/pci/linux/pci_uio.c | 2 ++ drivers/bus/pci
Hi Jerin,
> -Original Message-
> From: dev On Behalf Of Gavin Hu (Arm Technology
> China)
> Sent: Monday, November 11, 2019 10:01 PM
> To: jer...@marvell.com; dev@dpdk.org
> Cc: Olivier Matz ; Andrew Rybchenko
> ; David Christensen ;
> bruce.richard...@intel.com; konstantin.anan...@intel.
1 - 100 of 139 matches
Mail list logo