On Wed, Feb 12, 2025 at 09:47:11PM +, Soumyadeep Hore wrote:
> Enabling Tx timestamp queue for supporting Tx time based scheduling of
> packets.
>
Can you provide more details of this feature and how it can be used, how it is
enabled/disabled etc.
See also comments inline below.
/Bruce
>
I tested below 18 scenarios on RHEL 9.4 hosts and didn't find any new dpdk
issues.
- VM with device assignment(PF) throughput testing(1G hugepage size):
PASS
- VM with device assignment(PF) throughput testing(2M hugepage size) :
PASS
- VM with device assignment(VF) throughput testin
> -Original Message-
> From: lon...@linuxonhyperv.com
> Sent: Wednesday, February 19, 2025 5:13 AM
> To: Stephen Hemminger ; Wei Hu
>
> Cc: dev@dpdk.org; Long Li ; sta...@dpdk.org
> Subject: [EXTERNAL] [PATCH] net/netvsc: add stats counters from VF
>
> From: Long Li
>
> The netvsc d
When compiling with MSVC the error below shows up due to function
versioning:
../lib/net/rte_net_crc.c(418): error C2061: syntax error:
identifier '__attribute__'
MSVC allows alias function names to be exported, but the mechanism is
different than the one used by gcc. It was considered to enh
When compiling with MSVC the error below shows up due to function
versioning:
../lib/net/rte_net_crc.c(418): error C2061: syntax error:
identifier '__attribute__'
MSVC allows alias function names to be exported, but the mechanism is
different than the one used by gcc. It was considered to enh
When compiling with MSVC the error below shows up due to function
versioning:
../lib/net/rte_net_crc.c(418): error C2061: syntax error:
identifier '__attribute__'
MSVC allows alias function names to be exported, but the mechanism is
different than the one used by gcc. It was considered to enh
Now that the issues preventing this lib from be compiled with MSVC
are fixed it can be included in the compilation.
The "net" library will automatically get compiled as well as it
has a dependency on "mbuf" which will now get fulfilled.
Signed-off-by: Andre Muezerie
Acked-by: Bruce Richardson
-
When compiling with MSVC the error below shows up due to function
versioning:
../lib/net/rte_net_crc.c(418): error C2061: syntax error:
identifier '__attribute__'
MSVC allows alias function names to be exported, but the mechanism is
different than the one used by gcc. It was considered to enh
Added explanation about new macro MAP_STATIC_BASE_SYMBOL.
Signed-off-by: Andre Muezerie
---
doc/guides/contributing/abi_versioning.rst | 6 ++
1 file changed, 6 insertions(+)
diff --git a/doc/guides/contributing/abi_versioning.rst
b/doc/guides/contributing/abi_versioning.rst
index 7afd1c18
Acked-by: Chengwen Feng
On 2025/2/18 23:37, David Marchand wrote:
> Rather than use weak symbols, expose stubs symbols when needed.
>
> Signed-off-by: David Marchand
Acked-by: Chengwen Feng
On 2025/2/18 23:37, David Marchand wrote:
> Rather than use weak symbols, expose stubs symbols when needed.
>
> Signed-off-by: David Marchand
Acked-by: Chengwen Feng
On 2025/2/18 23:37, David Marchand wrote:
> Mark __rte_weak as deprecated.
> It will avoid having to support such feature with other linkers,
> plus this was never really needed.
>
> Signed-off-by: David Marchand
For This patchset just to support the basic chip init work
and user can just found the eth_dev, but can't control more.
For Now just support 2*10g nic,the chip can support
2*10g,4*10g,4*1g,8*1g,8*10g.
The Feature rx side can support rx-cksum-offload,rss,vlan-filter
flow_clow,uncast_filter,mcast_fil
add log function for trace or debug
Signed-off-by: Wenbo Cao
---
drivers/net/rnp/rnp_ethdev.c | 2 ++
drivers/net/rnp/rnp_logs.h | 36
2 files changed, 38 insertions(+)
create mode 100644 drivers/net/rnp/rnp_logs.h
diff --git a/drivers/net/rnp/rnp_ethdev
support rx/tx queue stop/start,for rx queue stop
need to reset a queue,must stop all rx queue
during reset this queue.
Signed-off-by: Wenbo Cao
---
doc/guides/nics/features/rnp.ini | 1 +
doc/guides/nics/rnp.rst | 4 +
drivers/net/rnp/base/rnp_common.c | 3 +
drivers/net/rnp/rnp
support tx/rx queue setup and release add hw bd
queue reset,sw queue reset.
Signed-off-by: Wenbo Cao
---
doc/guides/nics/rnp.rst | 3 +
drivers/net/rnp/base/meson.build| 1 +
drivers/net/rnp/base/rnp_bdq_if.c | 398 +++
drivers/net/rnp/base/rnp_bdq_if.h
add support two method of MAC unicast promisc
mulcast promisc broadcast promisc mode
Signed-off-by: Wenbo Cao
---
doc/guides/nics/features/rnp.ini| 2 +
doc/guides/nics/rnp.rst | 11 +++
drivers/net/rnp/base/rnp_common.c | 5 ++
drivers/net/rnp/base/rnp_eth_regs.h | 15 ++
add firmware communic method and basic device
init, uninit and close resource function.
Signed-off-by: Wenbo Cao
Reviewed-by: Ferruh Yigit
---
doc/guides/nics/rnp.rst | 10 +
drivers/net/rnp/base/meson.build| 4 +
drivers/net/rnp/base/rnp_common.c | 73 ++
drivers/net
This patch add support poll/irq link get mode.
Signed-off-by: Wenbo Cao
---
doc/guides/nics/features/rnp.ini | 2 +
doc/guides/nics/rnp.rst | 3 +
drivers/net/rnp/base/rnp_fw_cmd.c | 45
drivers/net/rnp/base/rnp_fw_cmd.h | 55 +
drivers/net/rnp/base/rnp_hw.h | 2 +
add get device hardware capability function
Signed-off-by: Wenbo Cao
---
doc/guides/nics/features/rnp.ini | 1 +
doc/guides/nics/rnp.rst | 1 +
drivers/net/rnp/base/rnp_fw_cmd.c | 20 ++
drivers/net/rnp/base/rnp_fw_cmd.h | 80 +
drivers/net/rnp/base/rnp_m
Add basic PCIe ethdev probe and remove.
Signed-off-by: Wenbo Cao
Reviewed-by: Stephen Hemminger
---
doc/guides/nics/rnp.rst | 17 ++
drivers/net/rnp/rnp.h| 16 +
drivers/net/rnp/rnp_ethdev.c | 66
3 files changed, 99 insertions(+
This patch adds support for mailbox of rnp PMD driver,
mailbox is used for communication between pf with fw
and vf driver.
Signed-off-by: Wenbo Cao
Reviewed-by: Stephen Hemminger
---
drivers/net/rnp/base/meson.build | 11 +
drivers/net/rnp/base/rnp_hw.h| 77 +
drivers/net/rnp/base/rnp
add support rss reta updata/query rss hash update/get
dev_configure add rss conf check.
Signed-off-by: Wenbo Cao
---
doc/guides/nics/features/rnp.ini| 4 +
doc/guides/nics/rnp.rst | 7 +
drivers/net/rnp/base/rnp_eth_regs.h | 16 ++
drivers/net/rnp/meson.build | 1 +
add basic support for device to start/stop function.
Signed-off-by: Wenbo Cao
---
doc/guides/nics/rnp.rst | 2 +
drivers/net/rnp/base/rnp_common.c | 22 +++
drivers/net/rnp/base/rnp_common.h | 1 +
drivers/net/rnp/base/rnp_dma_regs.h | 10 +
drivers/net/rnp/base/rnp_eth_reg
add support scatter multi segment received.
Signed-off-by: Wenbo Cao
---
doc/guides/nics/features/rnp.ini | 1 +
doc/guides/nics/rnp.rst | 2 +
drivers/net/rnp/rnp_rxtx.c | 132 ++-
drivers/net/rnp/rnp_rxtx.h | 2 +
4 files changed, 135 inse
add set link_down/link_up implement
Signed-off-by: Wenbo Cao
---
doc/guides/nics/rnp.rst | 2 +
drivers/net/rnp/base/rnp_eth_regs.h | 3 +
drivers/net/rnp/base/rnp_fw_cmd.c | 22 +++
drivers/net/rnp/base/rnp_fw_cmd.h | 6 ++
drivers/net/rnp/base/rnp_mbx_fw.c | 33 +++
add only support simple recv pkts.
Signed-off-by: Wenbo Cao
---
drivers/net/rnp/rnp_ethdev.c | 7 ++
drivers/net/rnp/rnp_rxtx.c | 130 +++
drivers/net/rnp/rnp_rxtx.h | 5 ++
3 files changed, 142 insertions(+)
diff --git a/drivers/net/rnp/rnp_ethdev.c b/dr
add only support simple send pkts.
Signed-off-by: Wenbo Cao
---
drivers/net/rnp/rnp_ethdev.c | 6 +++
drivers/net/rnp/rnp_rxtx.c | 85 +++-
drivers/net/rnp/rnp_rxtx.h | 1 +
3 files changed, 91 insertions(+), 1 deletion(-)
diff --git a/drivers/net/rnp/rnp_e
add support multiple segs mbuf send.
Signed-off-by: Wenbo Cao
---
drivers/net/rnp/rnp_rxtx.c | 127 -
drivers/net/rnp/rnp_rxtx.h | 3 +-
2 files changed, 127 insertions(+), 3 deletions(-)
diff --git a/drivers/net/rnp/rnp_rxtx.c b/drivers/net/rnp/rnp_rxtx.c
On Tue, Feb 11, 2025 at 11:02 PM Andre Muezerie
wrote:
>
> This series fixes many issues that prevent the "app" directory
> from being compiled with MSVC.
>
> Andre Muezerie (10):
> eal: add workaround for __builtin_constant_p
> test_alarm: avoid warning about different qualifiers
> test-pmd
On Tue, Feb 18, 2025 at 03:10:13PM +0100, David Marchand wrote:
> On Tue, Feb 18, 2025 at 2:32 PM Aaron Conole wrote:
> >
> > David Marchand writes:
> >
> > > Add a build target in Windows 2022 for MSVC.
> > >
> > > Loading MSVC environment and having successive commands in a single
> > > (cmd or
Mark __rte_weak as deprecated.
It will avoid having to support such feature with other linkers,
plus this was never really needed.
Signed-off-by: David Marchand
---
doc/guides/rel_notes/release_25_03.rst | 2 ++
lib/eal/include/rte_common.h | 6 +-
2 files changed, 7 insertions(+),
Rather than use weak symbols, expose stubs symbols when needed.
Signed-off-by: David Marchand
Reviewed-by: Maxime Coquelin
---
drivers/net/virtio/meson.build | 5 +
drivers/net/virtio/virtio_rxtx.c| 6 --
drivers/net/virtio/virtio_rxtx_simple.c | 4 +++-
3 files changed
Rather than use weak symbols, expose stubs symbols when needed.
Signed-off-by: David Marchand
Acked-by: Bruce Richardson
---
drivers/net/intel/fm10k/fm10k_ethdev.c | 20 +++-
1 file changed, 11 insertions(+), 9 deletions(-)
diff --git a/drivers/net/intel/fm10k/fm10k_ethdev.c
b
Remove dead code, those symbols are never used as the "strong" symbols
are always linked in.
Signed-off-by: David Marchand
---
app/test-compress-perf/main.c | 62 ---
1 file changed, 62 deletions(-)
diff --git a/app/test-compress-perf/main.c b/app/test-compress-p
Compiling with MSVC results in warnings like the one below:
app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string
'%d' requires an argument of type 'int',
but variadic argument 1 has type 'uint64_t'
Signed-off-by: Andre Muezerie
Signed-off-by: Chengwen Feng
---
app/tes
Compiling with MSVC results in errors like the one below:
app/test-pmd/cmdline_flow.c(8819): error C2099: initializer
is not a constant
Signed-off-by: Andre Muezerie
Signed-off-by: Chengwen Feng
---
app/test-pmd/cmdline_flow.c | 10 +++---
1 file changed, 3 insertions(+), 7 deletions(-
Compiling with MSVC results in the warning below:
app/test/test_alarm.c(54): warning C4090: 'function':
different '_Atomic' qualifiers
The fix is to use a macro to explicitly drop the qualifier.
Signed-off-by: Andre Muezerie
Signed-off-by: Chengwen Feng
---
app/test/test_alarm.c | 12
v2:
- use lcore_count as atomic always, not only when RTE_USE_C11_MEM_MODEL
is set.
- use PRIu64 in csumonly.c instead of casting variables to int.
This series fixes many issues that prevent the "app" directory
from being compiled with MSVC.
Andre Muezerie (10):
eal: add workaround for __buil
There's no MSVC equivalent for compiler extension __builtin_constant_p.
EAL already had __rte_constant which was used as a first attempt to
workaround __builtin_constant_p when using MSVC. However, there are
pieces of code that would benefit from being able to provide a default
value to be used ins
On Tue, Feb 18, 2025 at 04:46:56PM +, Bruce Richardson wrote:
> On Tue, Feb 18, 2025 at 08:32:02AM -0800, Andre Muezerie wrote:
> > Compiling with MSVC results in warnings like the one below:
> >
> > app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string
> > '%d' requires a
> From: Andre Muezerie [mailto:andre...@linux.microsoft.com]
> Sent: Tuesday, 18 February 2025 17.32
>
> There's no MSVC equivalent for compiler extension __builtin_constant_p.
> EAL already had __rte_constant which was used as a first attempt to
> workaround __builtin_constant_p when using MSVC.
On Tue, Feb 18, 2025 at 09:03:01AM -0800, Andre Muezerie wrote:
> On Tue, Feb 18, 2025 at 04:46:56PM +, Bruce Richardson wrote:
> > On Tue, Feb 18, 2025 at 08:32:02AM -0800, Andre Muezerie wrote:
> > > Compiling with MSVC results in warnings like the one below:
> > >
> > > app/test-pmd/csumonl
There's no MSVC equivalent for compiler extension __builtin_constant_p,
so a workaround is needed.
Signed-off-by: Andre Muezerie
---
app/test/test_memcpy_perf.c | 106 ++--
1 file changed, 53 insertions(+), 53 deletions(-)
diff --git a/app/test/test_memcpy_perf.c
Compiling with MSVC results in warnings like below:
app/test-pmd/cmdline.c(9023): warning C5101: use of preprocessor
directive in function-like macro argument list is undefined behavior
Signed-off-by: Andre Muezerie
Signed-off-by: Chengwen Feng
---
app/test-pmd/cmdline.c | 15 +
Enabled "app" directory to be compiled with MSVC along with all its
contents.
Signed-off-by: Andre Muezerie
---
app/meson.build | 4
app/test-pmd/meson.build | 4 +++-
2 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/app/meson.build b/app/meson.build
index e2db888ae1.
Compiling with MSVC results in the warning below:
app/test-pmd/cmdline_flow.c(13964): warning C4098: 'cmd_set_raw_parsed':
'void' function returning a value
Signed-off-by: Andre Muezerie
Signed-off-by: Chengwen Feng
---
app/test-pmd/cmdline_flow.c | 12
1 file changed, 8 inser
Compiling with MSVC results in the error below:
app/test/test_ring_perf.c(197): error C7712: address argument to atomic
operation must be a pointer to an atomic integer,
'volatile unsigned int *' is not valid
The fix is to mark lcore_count as atomic.
Signed-off-by: Andre Muezerie
Signed
Compiling with MSVC results in warnings like the one below:
app/test-pmd/util.c(201): warning C4334: '<<': result of 32-bit shift
implicitly converted to 64 bits (was 64-bit shift intended?)
Signed-off-by: Andre Muezerie
Signed-off-by: Chengwen Feng
---
app/test-pmd/cmdline.c | 4 ++--
app
On 31/01/2025 14:49, Bruce Richardson wrote:
The requirement to have DPDK in the DSA wq name is given in the idxd
chapter section 5.3.3 [1]. However, that information should also be
given in section 5.3.1 [2] where we list out the fields to be set and
what values they should have.
[1]https://doc
Make compress and crypto drivers register to the common driver.
Remove (unneeded) include_directories().
Signed-off-by: David Marchand
---
drivers/common/nitrox/meson.build | 3 --
drivers/common/nitrox/nitrox_device.c | 75 ++-
drivers/common/nitrox/nitrox_device.h
On Wed, Feb 12, 2025 at 09:47:10PM +, Soumyadeep Hore wrote:
> From: Paul Greenwalt
>
> Update E830 ETF offload time stamp resolution to 128ns along
I'm not sure the word "update" is applicable here, since I just see a
single new define being added. The timestamp resolution wasn't previously
On Tue, Feb 18, 2025 at 08:32:04AM -0800, Andre Muezerie wrote:
> Compiling with MSVC results in warnings like below:
>
> app/test-pmd/cmdline.c(9023): warning C5101: use of preprocessor
> directive in function-like macro argument list is undefined behavior
>
> Signed-off-by: Andre Muezerie
ARM configuration requires explicit `mcpu` specifications in the
implementor description.
The patch adds `mcpu` and `flags` description for the NVIDIA
BlueField-3 configuration.
Signed-off-by: Gregory Etelson
---
config/arm/meson.build | 5 +
1 file changed, 5 insertions(+)
diff --git a/co
David Marchand writes:
> Add a build target in Windows 2022 for MSVC.
>
> Loading MSVC environment and having successive commands in a single
> (cmd or pwsh) shell does not seem to correctly report if one of the
> commands failed.
> For now, load MSVC environment and run commands in separate shel
'width' and 'offset' are input parameters when dumping the register
info of an Ethernet device. They should be copied in the new request
before calling the device callback function.
Fixes: 083db2ed9e9 ('ethdev: add report of register names and filter')
Cc: sta...@dpdk.org
Signed-off-by: Thierry H
From: Long Li
The driver uses mana_shared_data for tracking usage count for primary
process. This is not correct as the mana_shared_data is allocated
by the primary and is meant to track usage of secondary process by the
primary process. And it creates a race condition when the device is
removed
From: Long Li
The netvsc driver should add per-queue and rx_nombuf counters from VF.
Fixes: 4e9c73e96e83 ("net/netvsc: add Hyper-V network device")
Cc: sta...@dpdk.org
Signed-off-by: Long Li
---
drivers/net/netvsc/hn_ethdev.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
di
https://bugs.dpdk.org/show_bug.cgi?id=1664
Bug ID: 1664
Summary: rte_ipv6_addr_is_v4mapped wrong logic
Product: DPDK
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Rather than use weak symbols, expose stubs symbols when needed.
Signed-off-by: David Marchand
---
drivers/net/enic/enic_main.c | 8 +++-
drivers/net/enic/meson.build | 1 +
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/drivers/net/enic/enic_main.c b/drivers/net/enic/enic_mai
Rather than use weak symbols, expose stubs symbols when needed.
Signed-off-by: David Marchand
---
drivers/bus/auxiliary/auxiliary_common.c | 6 --
drivers/bus/auxiliary/meson.build| 1 +
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/bus/auxiliary/auxiliary_co
This is an alternative to André series:
https://inbox.dpdk.org/dev/1735009552-31906-1-git-send-email-andre...@linux.microsoft.com/
Weak symbols can be easily replaced with some linking updates, and make
it clearer which symbols are actually ending up in the final binary.
--
David Marchand
Chan
Rather than use weak symbols, link stubs code when needed.
Signed-off-by: David Marchand
Acked-by: Chaoyong He
---
drivers/net/nfp/meson.build | 7 +--
drivers/net/nfp/nfdk/nfp_nfdk_vec_stub.c | 2 +-
drivers/net/nfp/nfp_rxtx_vec_stub.c | 4 ++--
3 files changed, 8 inserti
Rather than use weak symbols, expose stubs symbols when needed.
Signed-off-by: David Marchand
---
Changes since v1:
- fix build for Arm64 without SVE,
---
drivers/net/hns3/hns3_rxtx.c | 22 +++---
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/drivers/net/hns3/hn
Remove dead code, those symbols are never used as the "strong" symbols
are always linked in.
Signed-off-by: David Marchand
---
drivers/common/qat/qat_qp.c | 8
drivers/common/qat/qat_qp.h | 5 -
2 files changed, 13 deletions(-)
diff --git a/drivers/common/qat/qat_qp.c b/drivers/com
> -Original Message-
> From: David Marchand
> Sent: Monday, January 27, 2025 11:54
> To: dev@dpdk.org
> Cc: sta...@dpdk.org; Dariusz Sosnowski ; Slava
> Ovsiienko ; Bing Zhao ; Ori Kam
> ; Suanming Mou ; Matan Azrad
> ; Jack Min
> Subject: [PATCH] net/mlx5: fix leak in HWS flow counter ac
On Wed, Feb 12, 2025 at 09:47:11PM +, Soumyadeep Hore wrote:
> Enabling Tx timestamp queue for supporting Tx time based
> scheduling of packets.
>
Can you provide more details of this feature and how it can be used, how it
is enabled/disabled etc.
See also comments inline below.
/Bruce
> S
On Tue, Feb 18, 2025 at 08:32:06AM -0800, Andre Muezerie wrote:
> Compiling with MSVC results in the warning below:
>
> app/test-pmd/cmdline_flow.c(13964): warning C4098: 'cmd_set_raw_parsed':
> 'void' function returning a value
>
> Signed-off-by: Andre Muezerie
> Signed-off-by: Chengwen Fen
On Tue, Feb 18, 2025 at 08:32:02AM -0800, Andre Muezerie wrote:
> Compiling with MSVC results in warnings like the one below:
>
> app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string
> '%d' requires an argument of type 'int',
> but variadic argument 1 has type 'uint64_t'
On Tue, Feb 18, 2025 at 08:32:09AM -0800, Andre Muezerie wrote:
> Enabled "app" directory to be compiled with MSVC along with all its
> contents.
>
> Signed-off-by: Andre Muezerie
> ---
> app/meson.build | 4
> app/test-pmd/meson.build | 4 +++-
> 2 files changed, 3 insertions(+),
On Tue, Feb 18, 2025 at 08:32:03AM -0800, Andre Muezerie wrote:
> Compiling with MSVC results in warnings like the one below:
>
> app/test-pmd/util.c(201): warning C4334: '<<': result of 32-bit shift
> implicitly converted to 64 bits (was 64-bit shift intended?)
>
> Signed-off-by: Andre Mueze
David Marchand writes:
> On Tue, Feb 18, 2025 at 2:32 PM Aaron Conole wrote:
>>
>> David Marchand writes:
>>
>> > Add a build target in Windows 2022 for MSVC.
>> >
>> > Loading MSVC environment and having successive commands in a single
>> > (cmd or pwsh) shell does not seem to correctly report
On Tue, Feb 18, 2025 at 11:15:27AM +, Anatoly Burakov wrote:
> Allow specifying internal dependencies as either mandatory or optional.
> Specifying a dependency as optional will mean that the component being
s/optional/mandatory/
> built will be skipped if said dependency is not being built. A
On Tue, Feb 18, 2025 at 2:32 PM Aaron Conole wrote:
>
> David Marchand writes:
>
> > Add a build target in Windows 2022 for MSVC.
> >
> > Loading MSVC environment and having successive commands in a single
> > (cmd or pwsh) shell does not seem to correctly report if one of the
> > commands failed
On Fri, Feb 7, 2025 at 3:23 PM Konstantin Ananyev
wrote:
> > > As per guidance technical board meeting 2024/04/17. This series
> > > removes the use of VLAs from code built for Windows for all 3
> > > toolchains. If there are additional opportunities to convert VLAs
> > > to regular C arrays pleas
On Wed, Feb 12, 2025 at 6:14 AM Sunil Kumar Kori wrote:
>
> > On Tue, Feb 11, 2025 at 9:53 AM Sunil Kumar Kori
> > wrote:
> > >
> > > > diff --git a/lib/eal/common/eal_common_trace_ctf.c
> > > > b/lib/eal/common/eal_common_trace_ctf.c
> > > > index 6bc8bb9036..d9b307e076 100644
> > > > --- a/lib/
P bit of VXLAN-GPE and G bit of VXLAN-GBP should be set when matching the
protocols.
Fixes: 49765b78c81b ("net/mlx5/hws: match all VXLAN fields")
Signed-off-by: Minggang Li(Gavin)
---
doc/guides/nics/mlx5.rst | 4
1 file changed, 4 insertions(+)
diff --git a/doc/guides/nics/mlx5.rst b/doc/
It's user's responsibility to set correct flags, especially the G bit, to
distinguish the protocols, VXLAN and VXLAN-GBP, sharing the same port 4789.
It will be set to 0x8 if user does not specify the flags.
Fixes: da118115d95c ("app/testpmd: support matching any VXLAN field")
Signed-off-by: Ming
Hi Brian,
> -Original Message-
> From: Dooley, Brian
> Sent: Monday, January 13, 2025 6:10 PM
> Cc: dev@dpdk.org; gak...@marvell.com; Ji, Kai ; De Lara
> Guarch, Pablo ; Dooley, Brian
>
> Subject: [PATCH v3 1/2] crypto/ipsec_mb: add SM4 GCM support
>
> This patch introduces SM4 GCM algo
Allow specifying internal dependencies as either mandatory or optional.
Specifying a dependency as optional will mean that the component being
built will be skipped if said dependency is not being built. At build
time, the build system will resolve any optional dependencies and add
them to the list
From: Bruce Richardson
While not a serious problem, DPDK components often list more
dependencies than are actually necessary to build, due to the use of
recursive dependencies. In extreme cases, such as with core libraries,
this can lead to longer configuration times due to meson having to
dedupl
From: Bruce Richardson
As meson processes our DPDK source tree it manages dependencies
specified by each individual driver. To enable future analysis of the
dependency links between components, log the dependencies of each DPDK
component as it gets processed. This could potentially allow other to
As part of the meson build, we can record the dependencies for each
component as we process it, logging them to a file. This file can be
used as input to a number of other scripts and tools, for example, to
graph the dependencies, or to allow higher-level build-config tools to
automatically enable
From: Bruce Richardson
The kvargs library is used by EAL, and therefore is implicitly a
dependency of every DPDK driver. Remove it from the minimum set of
dependencies for each driver class as it's unnecessary to call it out
there.
Signed-off-by: Bruce Richardson
---
drivers/event/meson.build
From: Bruce Richardson
Rather than having each library depend up on EAL + any extra libs, we
can take advantage of recursive dependency support in meson and
just assign the dependencies of each directory directly, rather than
appending to the array. For libraries which only depend upon EAL, keep
From: Bruce Richardson
Rather than the single monolithic graph that would be output from the
deps.dot file in a build directory, we can post-process that to generate
simpler graphs for different tasks. This new "draw_dependency_graphs"
script takes the "deps.dot" as input and generates an output
From: Bruce Richardson
Remove any unnecessary dependencies from the app dependency lists.
This will give each app a near-minimum set of required dependencies.
Signed-off-by: Bruce Richardson
---
app/dumpcap/meson.build | 2 +-
app/graph/meson.build| 2 +-
app/pdump/meson.b
From: Bruce Richardson
Remove any unnecessary dependencies from the driver dependency lists.
This will give each driver a near-minimum set of required dependencies.
Signed-off-by: Bruce Richardson
Reviewed-by: Rosen Xu
---
drivers/baseband/fpga_5gnr_fec/meson.build | 2 +-
drivers/baseband/fp
> -Original Message-
> From: Minggang(Gavin) Li
> Sent: Tuesday, February 18, 2025 11:33
> To: Matan Azrad ; Slava Ovsiienko
> ; Ori Kam ; NBU-Contact-Thomas
> Monjalon (EXTERNAL) ; Dariusz Sosnowski
> ; Bing Zhao ; Suanming Mou
> ; Alex Vesker ; rongwei liu
>
> Cc: dev@dpdk.org; Rasla
> -Original Message-
> From: Minggang Li(Gavin)
> Sent: Tuesday, February 18, 2025 11:33
> To: Matan Azrad ; Slava Ovsiienko
> ; Ori Kam ; NBU-Contact-Thomas
> Monjalon (EXTERNAL) ; Aman Singh
> ; Minggang(Gavin) Li
> Cc: dev@dpdk.org; Raslan Darawsheh
> Subject: [PATCH 2/2] app/testpm
Testpmd doesn't modify the Rx/Tx queue number of all ports after attach a
new device. The root cause is that "port config all rxq " would
check if all ports are stopped and the status of this port is still in
'RTE_PORT_HANDLING'. This status is changed to 'RTE_PORT_STOPPED' in
setup_attached_port()
This patch series also fixed mlx5 release notes on VXLAN limitations.
Minggang Li (Gavin) (2):
doc: fix mlx5 VXLAN matching limitations
app/testpmd: use flags from user if it is set
app/test-pmd/cmdline_flow.c | 3 ++-
doc/guides/nics/mlx5.rst| 4
2 files changed, 6 insertions(+), 1
Hi Pablo,
> -Original Message-
> From: Dooley, Brian
> Sent: Monday, January 13, 2025 6:10 PM
> Cc: dev@dpdk.org; gak...@marvell.com; Ji, Kai ; De Lara
> Guarch, Pablo ; Dooley, Brian
>
> Subject: [PATCH v3 2/2] app/test: add SM4 GCM tests
>
> Added SM4-GCM tests for the AESNI MB PMD.
>
> -Original Message-
> From: Kevin Traynor
> Sent: Friday, February 14, 2025 11:06
> To: dev@dpdk.org
> Cc: Dariusz Sosnowski ; Maayan Kashani
> ; Raslan Darawsheh ; Ori Kam
> ; Kevin Traynor ; sta...@dpdk.org
> Subject: [PATCH] net/mlx5: fix flow null ops seg fault
>
> External email:
Hi David,
On 2/9/25 6:28 PM, David Marchand wrote:
Rather than use weak symbols, expose stubs symbols when needed.
Signed-off-by: David Marchand
---
drivers/net/virtio/meson.build | 5 +
drivers/net/virtio/virtio_rxtx.c| 6 --
drivers/net/virtio/virtio_rxtx_simple.
> -Original Message-
> From: Pathak, Pravin
> Sent: Thursday, February 6, 2025 8:20 PM
> To: Richardson, Bruce ; dev@dpdk.org
> Cc: sta...@dpdk.org
> Subject: [EXTERNAL] RE: [PATCH] event/dlb2: fix event weight handling in SSE
> code path
>
> Reviewed-by: Pravin Pathak > -Original
On Mon, Feb 17, 2025 at 09:24:04PM +0100, Morten Brørup wrote:
> > From: Stephen Hemminger [mailto:step...@networkplumber.org]
> > Sent: Monday, 17 February 2025 19.54
> >
> > A common pattern in DPDK internals is to have an array of function
> > pointers. When using these pointers an unnecessary
On 02/12/2024 10:35, Anatoly Burakov wrote:
Support for `--noiommu-mode` flag was added, but documentation for it was
not. Add documentation for the flag.
Signed-off-by: Anatoly Burakov
---
doc/guides/tools/devbind.rst | 5 +
1 file changed, 5 insertions(+)
diff --git a/doc/guides/tools
On 04/12/2024 10:47, Anatoly Burakov wrote:
It has been suggested [1] that a major cleanup/rewrite of devbind would be
beneficial in terms of long term maintainability of the code. I was in a
coding mood over the weekend, and so I've went ahead and rewritten devbind.
Note that this is one giant
This patch introduces a new API, rte_event_eth_rx_adapter_queues_add(),
to allow bulk addition of multiple Rx queues in the eventdev Rx adapter.
The existing rte_event_eth_rx_adapter_queue_add() API supports adding
multiple queues by specifying rx_queue_id = -1, but it lacks the ability
to apply s
1 - 100 of 104 matches
Mail list logo