https://bugs.dpdk.org/show_bug.cgi?id=446
Thomas Monjalon (tho...@monjalon.net) changed:
What|Removed |Added
Resolution|--- |FIXED
Status|U
On Wed, Jul 8, 2020 at 8:08 PM Stephen Hemminger
wrote:
> On Wed, 8 Jul 2020 10:06:26 +0500
> Sarosh Arif wrote:
>
> > rte_timer_stop_sync(struct rte_timer *tim)
> > {
> > + struct rte_timer_data *timer_data;
> > + TIMER_DATA_VALID_GET_OR_ERR_RET(default_data_id, timer_data,
> -EINVAL
On Wed, Jul 8, 2020 at 8:07 PM Stephen Hemminger
wrote:
> On Wed, 8 Jul 2020 10:06:26 +0500
> Sarosh Arif wrote:
>
> > /* loop until rte_timer_reset() succeed */
> > -void
> > +int
> > rte_timer_reset_sync(struct rte_timer *tim, uint64_t ticks,
> >enum rte_timer_type type,
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Parav Pandit
> Sent: Thursday, July 9, 2020 8:24 AM
>
> Hi Morten,
>
> > From: Morten Brørup
> > Sent: Tuesday, July 7, 2020 6:11 PM
>
> > Adding Joyce Kong to this discussion as the rte_bitops maintainer.
> >
> > > From: Thomas Monjalon [m
> From: Morten Brørup
> Sent: Thursday, July 9, 2020 12:46 PM
>
> > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Parav Pandit
> > Sent: Thursday, July 9, 2020 8:24 AM
> >
> > Hi Morten,
> >
> > > From: Morten Brørup
> > > Sent: Tuesday, July 7, 2020 6:11 PM
> >
> > > Adding Joyce Kong
> -Original Message-
> From: Zhang, Qi Z
> Sent: Thursday, July 9, 2020 2:47 PM
> To: Su, Simei
> Cc: dev@dpdk.org; Guo, Jia
> Subject: RE: [PATCH] net/ice: fix invalid RSS type
>
>
>
> > -Original Message-
> > From: Su, Simei
> > Sent: Thursday, July 9, 2020 2:27 PM
> > T
mlx5 PCI Device supports multiple classes of devices such as net, vdpa,
and/or regex.
To support these multiple classes, change mlx5_class to a
bitmap values so that if users asks to enable multiple of them, all
supported classes can be parsed.
Signed-off-by: Parav Pandit
Acked-by: Matan Azrad
-
Currently mlx5_common uses CLASS priority to initialize
common code before initializing the PMD.
However mlx5_common is not really a class, it is the pre-initialization
code needed for the PMDs.
In subsequent patch a needed initialization sequence is:
(a) Initialize bus (say pci)
(b) Initialize co
There are several drivers which duplicate bit generation macro.
Introduce a generic bit macros so that such drivers avoid redefining
same in multiple drivers.
Signed-off-by: Parav Pandit
Acked-by: Matan Azrad
Acked-by: Morten Brørup
---
Changelog:
v4->v5:
- Addressed comments from Morten Brøru
Following two errors are reported when compiled with
gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5).
drivers/common/mlx5/linux/mlx5_glue.h:188:2:
error: function declaration isn't a prototype [-Werror=strict-prototypes]
drivers/common/mlx5/linux/mlx5_glue.h:188:2:
error: function declaration isn't a
This series introduces mlx5 bus to support multiple class of devices
for a single PCI device.
Motivation and example
--
mlx5 PCI device supports multiple class of devices such as net, vdpa
and regex devices.
Currently only one pmd (either net or vdpa) can bind to this device.
Now that mlx5_pci bus does the check for enabled classes and performs
probe(), remove() of associated classes, individual class driver
doesn't need to check if other driver is enabled.
Signed-off-by: Parav Pandit
Acked-by: Matan Azrad
---
Changelog:
v2->v3:
- Removed empty line
v1->v2:
- New p
Use RTE_PRIO_COMMON for mlx5 common initialization and use
RTE_PRIO_CLASS for mlx5 net, vdpa PMDs.
This enables to do following initialization sequence.
(a) Initialize bus (say pci)
(b) Initialize common code of a driver (mlx5_common)
(c) Register mlx5 class PMDs (mlx5 net, mlx5 vdpa)
Information
Create a mlx5 bus driver framework for invoking drivers of
multiple classes who have registered with the mlx5_pci bus
driver.
Validate user class arguments for supported class combinations.
Signed-off-by: Parav Pandit
Acked-by: Matan Azrad
---
Changelog:
v3->v4:
- Fixed dma_map error unwinding
Add mlx5 PCI bus which enables multiple mlx5 drivers to bind to single
pci device.
Signed-off-by: Parav Pandit
Acked-by: Matan Azrad
---
Changelog:
v4->v5:
- Merged maintainers update patch with this patch
v2->v3:
- Addressed comments from Thomas and Asaf
- Moved pci_driver structure instance
Enable class driver to match with the mlx5 pci devices.
Migrate mlx5 net PMD and vdpa PMD to start using mlx5 common class
driver.
Signed-off-by: Parav Pandit
Acked-by: Matan Azrad
---
Changelog:
v2->v3:
- Avoid static table
v1->v2:
- Migreate API from rte_driver to rte_pci_driver
---
drivers
On 2020/7/8 18:14, Thomas Monjalon wrote:
08/07/2020 05:37, Wei Hu (Xavier):
On 2020/7/7 22:11, Thomas Monjalon wrote:
06/07/2020 09:06, Wei Hu (Xavier):
Currently, there is a potential problem that calling the API function
rte_eth_dev_set_vlan_offload to start VLAN hardware offloads which
When a RSS rule with only RSS type modifier L2/L3/L4 SRC/DST_ONLY,
it should return failure. This patch adds invalid RSS type check.
Fixes: dfaedcf20170 ("net/ice: refactor PF hash flow")
Signed-off-by: Simei Su
---
v2:
* Add specific macro value in check rather than hard code.
---
drivers/net
Hi Ferruh
> -Original Message-
> From: Yigit, Ferruh
> Sent: Wednesday, July 8, 2020 11:26 PM
> To: Sun, GuinanX ; dev@dpdk.org; Zhang, Qi Z
>
> Cc: Guo, Jia ; Zhao1, Wei ;
> Chylkowski, JakubX
> Subject: Re: [dpdk-dev] [PATCH v2 12/20] net/ixgbe/base: modify coding style
>
> On 7/2/202
Hi,
Noticed 2 typos:
On Thu, Jul 9, 2020 at 9:46 AM Phil Yang wrote:
>
> The event status is defined as a volatile variable and shared between
> threads. Use c11 atomic built-ins with explicit ordering instead of
> rte_atomic ops which enforce unnecessary barriers on aarch64.
>
> The event statu
This patchset integrates RCU QSBR support with LPM library.
Resource reclaimation implementation was splitted from the original
series, and has already been part of RCU library. Rework the series
to base LPM integration on RCU reclaimation APIs.
New API rte_lpm_rcu_qsbr_add is introduced for appl
Add positive and negative tests for API rte_lpm_rcu_qsbr_add.
Also test LPM library behavior when RCU QSBR is enabled.
Signed-off-by: Ruifeng Wang
Reviewed-by: Gavin Hu
Reviewed-by: Honnappa Nagarahalli
Acked-by: Vladimir Medvedkin
---
app/test/test_lpm.c | 291 +++
Currently, the tbl8 group is freed even though the readers might be
using the tbl8 group entries. The freed tbl8 group can be reallocated
quickly. This results in incorrect lookup results.
RCU QSBR process is integrated for safe tbl8 group reclaim.
Refer to RCU documentation to understand various
From: Honnappa Nagarahalli
Add performance tests for RCU integration. The performance
difference with and without RCU integration is very small
(~1% to ~2%) on both Arm and x86 platforms.
Signed-off-by: Honnappa Nagarahalli
Reviewed-by: Gavin Hu
Reviewed-by: Ruifeng Wang
Acked-by: Vladimir Me
> -Original Message-
> From: Stefan Puiu
> Sent: Thursday, July 9, 2020 4:02 PM
> To: Phil Yang
> Cc: david.march...@redhat.com; dev@dpdk.org; m...@ashroe.eu;
> acon...@redhat.com; d...@linux.vnet.ibm.com; Honnappa Nagarahalli
> ; Ruifeng Wang
> ; nd ; do...@redhat.com; Neil
> Horman ; hk
Host interface Shadow RAM Read (0x31) command response
buffer length should be stored in two bytes, instead of one byte.
This patch fixes it.
Fixes: e6102361b1d4 ("net/ixgbe/base: use 2 bytes for flash read command")
Cc: sta...@dpdk.org
Signed-off-by: Mateusz Kowalski
Signed-off-by: Guinan Sun
source code of ixgbe driver:
not-released-cid-ixgbe.2020.06.09.tar.gz released by the team which develop
basic drivers for any ixgbe NIC.
changelog in ND share repo:
>From 66d7da32d8e8 ("ixgbe-shared: Add support to clear VFMBMEM and toggle VF's
>TX queues")
To 7f2d73c9742b ("ixgbe-shared: check
For the "Apply Update" command the firmware does not
given an response. For this command, success should
be return.
Signed-off-by: Mateusz Kowalski
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_common.c | 9 -
1 file changed, 8 insertions(+), 1 deleti
Added additional register for X550 and above device family.
Signed-off-by: Piotr Skajewski
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_type.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/ixgbe/base/ixgbe_type.h
b/drivers/net/ixgbe/base
In some corner cases the functions ixgbe_clear_rar_generic and
ixgbe_clear_vmdq_generic may call one another leading to infinite
recursion.
When ixgbe_clear_vmdq_generic is called with IXGBE_CLEAR_VMDQ_ALL
flag, it's going to clear MPSAR registers, and proceed to call
ixgbe_clear_rar_generic, whic
With the NVM image for x550em XFI will not report
the auto-negotiation feature correctly. The auto-negotiation
should be "No" for supports and advertised items.
At the same time update speed makes it support 1G and 10G.
Fixes: 833df43399e7 ("net/ixgbe/base: add SGMII link for X550")
Cc: sta...@dpd
Several functions in the driver code have a weird function comment
formatting which uses two spaces instead of only one space for the main
function body.
This formatting will be mechanically fixed by sed in a future patch, but
doing so leads to some checkpatch.pl warnings on that patch. Cleanup th
Remove unnecessary return value check.
Signed-off-by: Jakub Chylkowski
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_82599.c | 4 +---
drivers/net/ixgbe/base/ixgbe_common.c | 4 +---
drivers/net/ixgbe/base/ixgbe_common.h | 2 +-
drivers/net/ixgbe/base/ixg
Add typecast for type mismatch.
Signed-off-by: Jakub Chylkowski
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_82599.c | 8
drivers/net/ixgbe/base/ixgbe_common.c| 2 +-
drivers/net/ixgbe/base/ixgbe_dcb_82598.c | 2 +-
drivers/net/ixgbe/base/ix
The retry variable was being incremented before it was evaluated by the
subsequent conditional against the maximum retries to figure out which
message to print. So we'll move the increment op to the end.
Signed-off-by: Jeb Cramer
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net
This patch is for restarting auto negotiation on PHY.
Signed-off-by: Jakub Chylkowski
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_phy.c | 48 ++
drivers/net/ixgbe/base/ixgbe_phy.h | 1 +
2 files changed, 23 insertions(+), 26 del
On ESXi OS, when user disables auto negotiation, the following log
appears: "(unsupported) Flow control autoneg is disabled".
It is true that auto negotiation is disabled but it is
not necessarily true that it is not supported.
Signed-off-by: Jakub Chylkowski
Signed-off-by: Guinan Sun
Reviewed-b
Write FDIRIP6M register to allow flow director filter
to set ipv6 rules without setting ipv6 source/destination address.
Signed-off-by: Piotr Skajewski
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_82599.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/d
We are seeing interoperability issues with switches when 2.5G and 5G
in x550 are advertised by default, so default to off.
Signed-off-by: Todd Fujinaka
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_phy.c | 4
1 file changed, 4 deletions(-)
diff --git a/
The function ixgbe_device_supports_autoneg_fc is checking whether
a particular device and medium configuration is supporting
Flow Control Autonegotiation. In case of non-support, the message
is always logged which is confusing.
The fix is removing unnecessary log entry.
Signed-off-by: Zalfresso-Ju
While sending request using ixgbe_hic_unlocked() the data field in
buffer struct is not used. It is set when the struct is overwritten by
FW to deliver the response. To not pass random data to FW the whole
structure should be zeroed before use.
Signed-off-by: Krzysztof Galazka
Signed-off-by: Piot
Writing to read-only fields returns a non-OK Return Status
for shadow RAM write command for X550.
This information was previously discarded.
Signed-off-by: Stanislaw Grzeszczak
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_x550.c | 13 -
1 file ch
Update base code version in readme.
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/README | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ixgbe/base/README b/drivers/net/ixgbe/base/README
index a48b14ed2..2c7469392 100644
--- a/drivers
In existing build env, RTE_LIBRTE_BNXT_PMD_SYSTEM is unset.
Testing against a n value does not work and we end up with a link issue:
/usr/bin/ld: tf_core/tf_em_common.o: in function `tf_em_ext_common_alloc':
.../dpdk/drivers/net/bnxt/tf_core/tf_em_common.c:1040: undefined reference
to `tf_em_ext_
The codes has been exposed correctly, so remove pre-processor tags.
Signed-off-by: Guinan Sun
Reviewed-by: Wei Zhao
---
drivers/net/ixgbe/base/ixgbe_common.c | 8
drivers/net/ixgbe/base/ixgbe_phy.h| 2 --
drivers/net/ixgbe/base/ixgbe_type.h | 10 --
drivers/net/ixgbe/ba
The event status is defined as a volatile variable and shared between
threads. Use c11 atomic built-ins with explicit ordering instead of
rte_atomic ops which enforce unnecessary barriers on aarch64.
The event status has been cleaned up by the compare-and-swap operation
when we free the event data
First of all let me thank you all one again for the time you took
looking at this and summarize your feedback as I understand it.
1. Don't use interrupt thread because in heavy load scenarios this might
cause problems.
2. Provide higher level functionality - so that application can just use
it
From: Tianfei Zhang
0x4a means idle status on physical layer. when encounter
0x4a on raw data, it need insert a ESCAPE character for
indication.
Fixes: 96ebfcf8 ("raw/ifpga/base: add SPI and MAX10 device driver")
Cc: sta...@dpdk.org
Signed-off-by: Tianfei Zhang
---
drivers/raw/ifpga/base/opae
From: Tianfei Zhang
Add fecmode setting on NIOS SPI master initialization.
this SPI is shared by NIOS core inside FPGA, NIOS will
use this SPI master to do some one time initialization
after power up, and then release the control to DPDK.
Fix the timeout initialization for polling the
NIOS_INIT_
From: Tianfei Zhang
Add fecmode setting on NIOS SPI primary initialization.
this SPI is shared by NIOS core inside FPGA, NIOS will
use this SPI primary to do some one time initialization
after power up, and then release the control to DPDK.
Fix the timeout initialization for polling the
NIOS_INI
From: Tianfei Zhang
0x4a means idle status on physical layer. when encounter
0x4a on raw data, it need insert a ESCAPE character for
indication.
Fixes: 96ebfcf8 ("raw/ifpga/base: add SPI and MAX10 device driver")
Cc: sta...@dpdk.org
Signed-off-by: Tianfei Zhang
---
drivers/raw/ifpga/base/opae
The message include "master", it suggested that replace by " primary ", I will
send the V2.
-Original Message-
From: Zhang, Tianfei
Sent: Friday, July 10, 2020 12:36 AM
To: dev@dpdk.org; Xu, Rosen
Cc: Zhang, Tianfei ; sta...@dpdk.org
Subject: [PATCH v1 2/2] raw/ifpga/base: fix NIOS SPI
09/07/2020 09:39, Wei Hu (Xavier):
> On 2020/7/8 18:14, Thomas Monjalon wrote:
> > 08/07/2020 05:37, Wei Hu (Xavier):
> >> On 2020/7/7 22:11, Thomas Monjalon wrote:
> >>> 06/07/2020 09:06, Wei Hu (Xavier):
> Currently, there is a potential problem that calling the API function
> rte_eth_d
From: Kalesh AP
This patchset contains few bug fixes in bnxt PMD.
Please apply.
Kalesh AP (5):
net/bnxt: fix to avoid unnecessary memory allocation
net/bnxt: remove unused enum declaration
net/bnxt: fix to not send unnecessary hwrm command
net/bnxt: fix to set flow error when filter cre
From: Kalesh AP
VFs are not privileged to issue HWRM_PORT_LED_QCFG/CFG.
There is no need to allocate "bp->leds" memory.
Fixes: 205b74295282 ("net/bnxt: fix allocation of LED config info")
Cc: sta...@dpdk.org
Signed-off-by: Kalesh AP
Reviewed-by: Somnath Kotur
Reviewed-by: Ajit Kumar Khaparde
From: Kalesh AP
This patch does following things:
1. Added a wrapper function bnxt_clear_one_vnic_filter()
for destroying the filters in hw. This will avoid duplicate
code in many places.
2. When flow creae fails due to an already existing mark id
for the new flow id created, fixed to de
From: Kalesh AP
During probe, driver issues HWRM_CFA_ADV_FLOW_MGNT_QCAPS command.
But it is not using the command response anywhere which makes the
fw call redundant.
Remove the unnecessary HWRM_CFA_ADV_FLOW_MGNT_QCAPS call to fw.
Remove the redundant flow_flags in bnxt struct.
Fixes: afef822b2
From: Kalesh AP
If set_em_filter/set_ntuple_filter cmds fails for some reason,
driver is not filling the "rte_flow_error" string buffer.
Same is the case when flow create fails due to an already
existing mark id for the new flow id created.
This leads to a crash in testpmd while trying to print t
From: Kalesh AP
"enum bnxt_hw_context" is defined in the header file, but is not
used anywhere.
Fixes: 9738793f28ec ("net/bnxt: add VNIC functions and structs")
Cc: sta...@dpdk.org
Signed-off-by: Kalesh AP
Reviewed-by: Ajit Kumar Khaparde
---
drivers/net/bnxt/bnxt.h | 7 ---
1 file chang
This fix initializes the dependency object with the external
dependency list. Previously, the external dependencies were
just ignored.
Signed-off-by: Felix Moessbauer
---
app/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/meson.build b/app/meson.build
index 5
Changes since v2:
- add missing internal dependency
- improve wording of commit message
Changes since v1:
- move to app folder, as suggested by maintainer
- fix issues reported by checkpatch
Felix Moessbauer (2):
Fix build of apps with external dependencies
Add l2reflect measurement applica
The l2reflect application implements a ping-pong benchmark to
measure the latency between two instances. For communication,
we use raw ethernet and send one packet at a time. The timing data
is collected locally and min/max/avg values are displayed in a TUI.
Finally, a histogram of the latencies is
> -Original Message-
> From: Olivier Matz
> Sent: Wednesday, July 8, 2020 7:43 PM
> To: Phil Yang
> Cc: Stephen Hemminger ;
> david.march...@redhat.com; dev@dpdk.org; d...@linux.vnet.ibm.com;
> Honnappa Nagarahalli ; Ruifeng Wang
> ; nd
> Subject: Re: [dpdk-dev] [PATCH v2] mbuf: use C11
On Wed, Jul 8, 2020 at 5:21 AM Joyce Kong wrote:
>
> > -Original Message-
> > From: David Marchand
> > Sent: Tuesday, July 7, 2020 10:00 PM
> > To: Joyce Kong
> > Cc: Maxime Coquelin ; jer...@marvell.com;
> > Zhihong Wang ; Xiaolong Ye
> > ; Beilei Xing ; Jeff Guo
> > ; Mcnamara, John ;
> -Original Message-
> From: Olivier Matz
> Sent: Wednesday, July 8, 2020 7:44 PM
> To: Phil Yang
> Cc: david.march...@redhat.com; dev@dpdk.org; d...@linux.vnet.ibm.com;
> Honnappa Nagarahalli ; Ruifeng Wang
> ; nd
> Subject: Re: [PATCH v2] mbuf: use C11 atomics for refcnt operations
>
Use C11 atomic built-ins with explicit ordering instead of rte_atomic
ops which enforce unnecessary barriers on aarch64.
Signed-off-by: Phil Yang
Reviewed-by: Ruifeng Wang
---
v3:
1.Fix ABI breakage.
2.Simplify data type cast.
v2:
Fix ABI issue: revert the rte_mbuf_ext_shared_info struct refcnt
On Thu, Jul 9, 2020 at 4:22 AM Rasesh Mody wrote:
>
> Add support for .get_reg eth_dev ops which will be used to collect the
> firmware debug data.
>
> PMD on detecting on some HW errors will collect the FW/HW Dump to a
> buffer and then it will save it to a file implemented in
> qede_save_fw_dump
Minutes 9 July 2020
---
Agenda:
* Release Dates
* Subtrees
* LTS
* OvS
* Opens
Participants:
* Arm
* Debian/Microsoft
* Intel
* Marvell
* Nvidia
* NXP
* Red Hat
Release Dates
-
* v20.08 dates:
* -rc1 pushed to *Sunday, 12 July 2020*
* -rc2: Monday,
On Thu, Jul 9, 2020 at 10:35 AM Phil Yang wrote:
>
> The event status is defined as a volatile variable and shared between
> threads. Use c11 atomic built-ins with explicit ordering instead of
> rte_atomic ops which enforce unnecessary barriers on aarch64.
>
> The event status has been cleaned up
From: Levend Sayar
"extern C" define is added to rte_service_component.h file
to be able to use in C++ context
Signed-off-by: Levend Sayar
Acked-by: Harry van Haaren
---
lib/librte_eal/include/rte_service_component.h | 9 +
1 file changed, 9 insertions(+)
diff --git a/lib/librte_eal/
On 6/16/2020 11:09 AM, Chas Williams wrote:
> On 6/16/20 5:46 AM, David Marchand wrote:
>> Caught by code review, rte_eth_dev_socket_id() returns -1 on error.
>> The code should behave the same, but still, do not use LCORE_ID_ANY for
>> something that is not a lcore id.
>>
>> Fixes: c15c5897340d (
From: Yunjian Wang
In fslmc_process_mcp(), we allocate memory for 'dev_name' but not released
before return in secondary process.
Coverity issue: 268327
Fixes: e55d0494ab98 ("bus/fslmc: support secondary process")
Cc: sta...@dpdk.org
Signed-off-by: Yunjian Wang
---
drivers/bus/fslmc/fslmc_vfi
inet_pton4 and inet_pton6 was reimplemented. Replace implementation of
inet_pton4 and inet_pton6 with libc inet_pton function
Bugzilla ID: 365
Fixes: 31ce8d888625 ("net/softnic: add command interface")
Cc: jasvinder.si...@intel.com
Reported-by: David Marchand
Signed-off-by: Ibtisam Tariq
---
v3
inet_pton4 and inet_pton6 was reimplemented. Replace implementation of
inet_pton4 and inet_pton6 with libc inet_pton function
Bugzilla ID: 365
Fixes: 0d547ed03717 ("examples/ipsec-secgw: support configuration file")
Cc: roy.fan.zh...@intel.com
Reported-by: David Marchand
Signed-off-by: Ibtisam T
inet_pton4 and inet_pton6 was reimplemented. Replacing implementation of
inet_pton4 and inet_pton6 with libc inet_pton function
Bugzilla ID: 365
Fixes: ed7a0490f7e2 ("examples/ip_pipeline: add string parsing helpers")
Cc: piotrx.t.azarew...@intel.com
Reported-by: David Marchand
Signed-off-by: Ib
On Thu, Jul 09, 2020 at 12:23:31AM +0300, Dmitry Kozlyuk wrote:
> This patchset implements existing pmdinfogen logic in Python, replaces
> and removes the old code. The goals of rewriting are:
>
> * easier maintenance by using a more high-level language,
> * simpler build process without host appl
This series are minor bugfixes for rte_ethdev.c.
Wei Hu (Xavier) (2):
ethdev: fix data room size verification in Rx queue setup
ethdev: fix VLAN offloads set if no relative capabilities
drivers/net/dpaa2/dpaa2_ethdev.c | 12 +++-
drivers/net/enic/enic_ethdev.c |
Currently, there is a potential problem that calling the API function
rte_eth_dev_set_vlan_offload to start VLAN hardware offloads which the
driver does not support. If the PMD driver does not support certain VLAN
hardware offloads and does not check for it, the hardware setting will
not change, bu
In the rte_eth_rx_queue_setup API function, the local variable named
mbp_buf_size, which is the data room size of the input parameter mp,
is checked to guarantee that each memory chunck used for net device
in the mbuf is bigger than the min_rx_bufsize. But if mbp_buf_size is
less than RTE_PKTMBUF_H
> -Original Message-
> From: dev On Behalf Of Guinan Sun
> Sent: Thursday, July 9, 2020 4:00 PM
> To: dev@dpdk.org
> Cc: Guo, Jia ; Zhao1, Wei ; Sun,
> GuinanX
> Subject: [dpdk-dev] [PATCH v3 00/19] update ixgbe base code
>
> source code of ixgbe driver:
> not-released-cid-ixgbe.2020.
Hi Phil,
On Thu, Jul 09, 2020 at 06:10:42PM +0800, Phil Yang wrote:
> Use C11 atomic built-ins with explicit ordering instead of rte_atomic
> ops which enforce unnecessary barriers on aarch64.
>
> Signed-off-by: Phil Yang
> Reviewed-by: Ruifeng Wang
> ---
> v3:
> 1.Fix ABI breakage.
> 2.Simplif
> -Original Message-
> From: Su, Simei
> Sent: Thursday, July 9, 2020 2:21 PM
> To: Zhang, Qi Z
> Cc: dev@dpdk.org; Guo, Jia ; Su, Simei
>
> Subject: [PATCH] net/ice: fix incomplete protocol header for PPPoE
>
> When adding a RSS rule with pattern MAC_PPPOE_IPV4_UDP and input set
> S
Hello Ruifeng,
On Thu, Jul 9, 2020 at 10:03 AM Ruifeng Wang wrote:
> diff --git a/lib/librte_lpm/rte_lpm.c b/lib/librte_lpm/rte_lpm.c
> index 38ab512a4..4fbf5b6df 100644
> --- a/lib/librte_lpm/rte_lpm.c
> +++ b/lib/librte_lpm/rte_lpm.c
> @@ -1,5 +1,6 @@
> /* SPDX-License-Identifier: BSD-3-Clause
Hi,
> -Original Message-
> From: Ali Alnubani
> Sent: Wednesday, July 8, 2020 12:14 PM
> To: dev@dpdk.org
> Cc: Raslan Darawsheh
> Subject: [PATCH] net/mlx5: add ConnectX-6 Lx's device ID
>
> This adds the ConnectX-6 Lx device id to the list of supported
> Mellanox devices that run the
Hi,
> -Original Message-
> From: Viacheslav Ovsiienko
> Sent: Wednesday, July 8, 2020 11:52 PM
> To: dev@dpdk.org
> Cc: Matan Azrad ; Raslan Darawsheh
> ; sta...@dpdk.org
> Subject: [PATCH] common/mlx5: fix physical port name pattern recognition
>
> This patch makes the Infiniband device
Hi,
> -Original Message-
> From: dev On Behalf Of Ali Alnubani
> Sent: Wednesday, July 8, 2020 12:13 PM
> To: dev@dpdk.org
> Cc: Alexander Kozyrev
> Subject: [dpdk-dev] [PATCH] doc: fix a typo in mlx5 guide
>
> Fixes: ecb160456aed ("net/mlx5: add device parameter for MPRQ stride
> size"
On 7/9/2020 9:15 AM, David Marchand wrote:
> In existing build env, RTE_LIBRTE_BNXT_PMD_SYSTEM is unset.
> Testing against a n value does not work and we end up with a link issue:
>
> /usr/bin/ld: tf_core/tf_em_common.o: in function `tf_em_ext_common_alloc':
> .../dpdk/drivers/net/bnxt/tf_core/tf_
> -Original Message-
> From: Ananyev, Konstantin
> Sent: Friday, May 22, 2020 12:58 PM
> To: dev@dpdk.org
> Cc: Zhang, Roy Fan ; Ananyev, Konstantin
>
> Subject: [PATCH 20.08] crypto/scheduler: use ring peek API
>
> scheduler PMD uses its own hand-made peek functions
> that directly a
08/07/2020 16:43, Bing Zhao:
> In the translation stage, the eCPRI item should be translated into
> the format that lower layer driver could use. All the fields that
> need to matched must be in network byte order after translation, as
> well as the mask. Since the header in the item belongs to the
Hi, Jerin and Ferruh
First of all it's decided to postpone this effort to 20.11.
@jer...@marvell.com I sincerely believe we can work out great API for
- shared action, context
- action update / modification / replacement
after 20.08 without time pressure & stress.
I'm fully committed and will co
08/07/2020 17:47, Viacheslav Ovsiienko:
> There is the requirement on some networks for precise traffic timing
> management. The ability to send (and, generally speaking, receive)
> the packets at the very precisely specified moment of time provides
> the opportunity to support the connections with
From: Levend Sayar
"extern C" define is added to rte_service_component.h file
to be able to use in C++ context
Signed-off-by: Levend Sayar
Acked-by: Harry van Haaren
---
lib/librte_eal/include/rte_service_component.h | 9 +
1 file changed, 9 insertions(+)
diff --git a/lib/librte_eal/
This commit adds testpmd capability to provide timestamps on the packets
being sent in the txonly mode. This includes:
- SEND_ON_TIMESTAMP support
new device Tx offload capability support added, example:
testpmd> port config 0 tx_offload send_on_timestamp on
- set txtimes, registers fi
09/07/2020 14:25, Andrey Vesnovaty:
> Hi, Jerin and Ferruh
>
> First of all it's decided to postpone this effort to 20.11.
> @jer...@marvell.com I sincerely believe we can work out great API for
> - shared action, context
> - action update / modification / replacement
> after 20.08 without time p
There is the requirement on some networks for precise traffic timing
management. The ability to send (and, generally speaking, receive)
the packets at the very precisely specified moment of time provides
the opportunity to support the connections with Time Division
Multiplexing using the contempora
Hi Oliver,
> -Original Message-
> From: Olivier Matz
> Sent: Thursday, July 9, 2020 7:04 PM
> To: Phil Yang
> Cc: dev@dpdk.org; step...@networkplumber.org;
> david.march...@redhat.com; d...@linux.vnet.ibm.com; Honnappa
> Nagarahalli ; Ruifeng Wang
> ; nd
> Subject: Re: [PATCH v3] mbuf:
> -Original Message-
> From: Pavan Nikhilesh Bhagavatula
> Sent: Thursday, July 2, 2020 8:57 AM
> To: Apeksha Gupta ;
> jerin.ja...@caviumnetworks.com
> Cc: dev@dpdk.org; tho...@monjalon.net; Hemant Agrawal
> ; Nipun Gupta ; Akhil
> Goyal ; sta...@dpdk.org
> Subject: [EXT] RE: [dpdk-dev
Change ETIME to ETIMEDOUT, because ETIME is not
defined in FreeBSD which may cause build error.
--
v1:
- modify ETIME errors for FreeBSD
Xiaoyun wang (1):
net/hinic/base: modify ETIME errors for FreeBSD
drivers/net/hinic/base/hinic_pmd_hwdev.c | 2 +-
drivers/net/hinic/base/hinic_pmd_hwif.
Change ETIME errors to ETIMEDOUT, because ETIME is not
defined in FreeBSD which may cause build error.
Signed-off-by: Xiaoyun wang
---
drivers/net/hinic/base/hinic_pmd_hwdev.c | 2 +-
drivers/net/hinic/base/hinic_pmd_hwif.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
09/07/2020 14:32, levendsa...@gmail.com:
> From: Levend Sayar
>
> "extern C" define is added to rte_service_component.h file
> to be able to use in C++ context
It is a bug.
The title should be "service: fix C++ linkage"
And these tags must be added:
Fixes: 21698354c832 ("service: introduce servi
1 - 100 of 190 matches
Mail list logo