On Tue, 5 Dec 2023 03:52:59 +
Joyce Kong wrote:
> The cpu info in some cross files is inconsistent with
> that in SoC flags. The mismatch doesn't cause any issue
> because the cpu field in the cross file takes no effect
> and machine_args in config/arm/meson.build actually works.
> Use a com
On 2023/12/7 20:31, Ferruh Yigit wrote:
On 12/7/2023 1:37 AM, Jie Hai wrote:
This patchset refactors mailbox codes.
--
v3:
1. fix the checkpatch warning on __atomic_xxx.
--
Dengdui Huang (4):
net/hns3: refactor VF mailbox message struct
net/hns3: refactor PF mailbox message struct
net
Enhanced Organization of the Programmer's Guide for Better Clarity
- Restructured main sections for coherent topic grouping; added 'Foundation
Principles',
'Memory Management', 'CPU Management', and 'Device Libraries'.
- 'Foundation Principles' now includes 'Introduction', 'Overview', 'Source
---
doc/guides/prog_guide/bpf_lib.rst | 4 +-
doc/guides/prog_guide/dmadev.rst | 6 +-
doc/guides/prog_guide/efd_lib.rst | 4 +-
.../prog_guide/env_abstraction_layer.rst | 4 +-
doc/guides/prog_guide/ethdev/index.rst| 12 ++
.../prog_guide
Hi Ferruh and Thomas,
This series have been discussing for over a year and a half.
Looking back on previous discussions, we have also made some progress
and consensus.
I am sticking to track it. Because they resolve a real exist issue.
Can you take a look at it again?
BR,
/Huisong
在 2023/10/
The refcnt update of stored mbufs in memif driver is redundant since
those mbufs are only freed in eth_memif_tx_zc(). No other place
can free those stored mbufs quietly. So remove the redundant mbuf
refcnt update in dpdk memif driver to avoid extra heavy cost.
Performance of dpdk memif zero copy tx
> -Original Message-
> From: Stephen Hemminger
> Sent: Friday, December 8, 2023 6:41 AM
> To: Joyce Kong
> Cc: tho...@monjalon.net; Ruifeng Wang ;
> bruce.richard...@intel.com; dev@dpdk.org; nd ;
> sta...@dpdk.org
> Subject: Re: [PATCH v4 1/2] config: correct cpu instruction set for cross
This patch introduces new virtio-user callback to map the vq
notification area and implements it for the vhost-vDPA backend.
This is simply done by using mmap()/munmap() for
the vhost-vDPA fd.
This patch also adds a parameter for configuring feature bit
VIRTIO_NET_F_NOTIFICATION_DATA. If feature i
This patch introduces new function to get rss device config
and adds code to forward the RSS control command to backend
through hw control queue if RSS feature is negotiated.
This patch will help to negotiate VIRTIO_NET_F_RSS feature
if vhost-vdpa backend supports RSS in HW.
Signed-off-by: Srujana
UACCE (Unified/User-space-access-intended Accelerator Framework) was
upstream to Linux kernel version 5.7, and it targets to provide Shared
Virtual Addressing (SVA) between accelerators and processes. So
accelerator can access any data structure of the main cpu. [1] for more
information.
This comm
https://bugs.dpdk.org/show_bug.cgi?id=1334
Bug ID: 1334
Summary: Failures of testpmd on XXV710 card in VMs under
Openshift Container Platform
Product: DPDK
Version: 22.11
Hardware: x86
OS: Linux
On 2023/12/7 21:57, Ferruh Yigit wrote:
On 12/7/2023 1:42 AM, Jie Hai wrote:
Replace the use of gcc builtin __atomic_xxx intrinsics with
corresponding rte_atomic_xxx optional stdatomic API.
Signed-off-by: Jie Hai
<...>
static void
@@ -643,8 +643,8 @@ hns3vf_get_push_lsc_cap(struct hns3_
This patchset refactors mailbox codes.
We will send a patch fix for all __atomic_xxx, so this
patchset still use __atomic_xxx.
--
v4:
1. use __atomic_xxx instead of rte_atomic_XXX.
2. use '__rte_packed' instead of '#pragma pack()'.
v3:
1. fix the checkpatch warning on __atomic_xxx.
--
Dengdui Hua
From: Dengdui Huang
The data region in VF to PF mbx memssage command is
used to communicate with PF driver. And this data
region exists as an array. As a result, some complicated
feature commands, like setting promisc mode, map/unmap
ring vector and setting VLAN id, have to use magic number
to se
From: Dengdui Huang
The data region in PF to VF mbx memssage command is used
to communicate with VF driver. And this data region exists
as an array. As a result, some complicated feature commands,
like mailbox response, link change event, close promisc mode,
reset request and update pvid state, h
From: Dengdui Huang
The 'hns3_send_mbx_msg' function has following problem:
1. the name is vague, missing caller indication
2. too many input parameters because the filling messages
are placed in commands the send command.
Therefore, a common interface is encapsulated to fill in
the mailbox m
From: Dengdui Huang
The mailbox messages of the PF and VF are processed in
the same function. The PF and VF call the same function
to process the messages. This code is excessive coupling
and isn't good for maintenance. Therefore, this patch
separates the interfaces that handle PF mailbox message
On 2023/12/8 1:42, Ferruh Yigit wrote:
On 12/7/2023 1:57 PM, Ferruh Yigit wrote:
On 12/7/2023 1:42 AM, Jie Hai wrote:
Replace the use of gcc builtin __atomic_xxx intrinsics with
corresponding rte_atomic_xxx optional stdatomic API.
Signed-off-by: Jie Hai
<...>
static void
@@ -643,8 +643
This patchset fixes some bugs on reset, and the replaces
of gcc builtin __atomic_xxx with rte_atomic_xxx is removed
and will send later separately.
Dengdui Huang (3):
net/hns3: fix VF multiple count on one reset
net/hns3: fix disable command with firmware
net/hns3: fix incorrect reset level
From: Dengdui Huang
There are two ways for the hns3 VF driver to know reset event, namely,
interrupt task and periodic detection task. For the latter, the real
reset process will delay several microseconds to execute. Both tasks
cause the count to increase by 1.
However, the periodic detection t
From: Dengdui Huang
Disable command only when need to delay handle reset.
This patch fixes it.
Fixes: 5be38fc6c0fc ("net/hns3: fix multiple reset detected log")
Cc: sta...@dpdk.org
Signed-off-by: Dengdui Huang
Signed-off-by: Jie Hai
---
drivers/net/hns3/hns3_ethdev.c | 8 +++-
1 file cha
From: Dengdui Huang
Currently, there are two problems in hns3vf_is_reset_pending():
1. The new detect reset level is not HNS3_NONE_RESET, but the
last reset level is HNS3_NONE_RESET, this function returns false.
2. Comparison between last_req and new_req is opposite.
In addition, the reset le
DMA library has a function to get DMA device based on device name but
there is no function to get DMA device using device id.
Added a function that lookup for the dma device using device id and
returns the pointer to the same.
Signed-off-by: Amit Prakash Shukla
---
lib/dmadev/rte_dmadev.c |
> -Original Message-
> From: Rakesh Kudurumalla
> Sent: Tuesday, December 5, 2023 2:57 PM
> To: Nithin Kumar Dabilpuram ; Pavan
> Nikhilesh Bhagavatula
> Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ;
> Rakesh Kudurumalla
> Subject: [EXT] [PATCH v4 1/3] node: support to add next node to e
> -Original Message-
> From: Stephen Hemminger
> Sent: Wednesday, November 29, 2023 18:26
> To: dev@dpdk.org
> Cc: Stephen Hemminger ; Dariusz Sosnowski
> ; Slava Ovsiienko ; Ori
> Kam ; Suanming Mou ; Matan
> Azrad
> Subject: [PATCH v5 09/19] net/mlx[45]: remove word sanity
>
> The term
Exploring DPDK’s Role in 5G Architecture
Experts from Intel, Ericsson and NVIDIA will talk about using DPDK for 5G.
Join us at 2pm UTC for 1 hour (Q&A included), this Thursday 7 December.
Register with this link:
https://zoom.us/webinar/register/WN_LSyHZj9DRf2Q0XFoev60Sg#/registration
Please find below NVIDIA roadmap for 24.03 release:
A. rte_flow new APIs
=
1. Add NAT64 action.
Adding a new action for header re-write of NAT64.
NAT64 (Network Address Translation 64) is a networking technology that
facilitates communication between IPv6 and IPv4 network
On Tue, Dec 5, 2023 at 10:27 AM Rakesh Kudurumalla
wrote:
> diff --git a/lib/node/version.map b/lib/node/version.map
> index 99ffcdd414..07abc3a79f 100644
> --- a/lib/node/version.map
> +++ b/lib/node/version.map
> @@ -16,6 +16,7 @@ EXPERIMENTAL {
> rte_node_ip6_route_add;
>
> # ad
IEEE 802 packets may have a minimum size limit. The data fields
should be padded when necessary. In some cases, the padding data
is not zero. Testpmd does not trim these IP packets to the true
length of the frame, so errors will occur when calculating TCP
or UDP checksum.
This commit fixes this is
On Thu, 9 Nov 2023 at 10:30, Luca Boccassi wrote:
>
> Hi,
>
> We should start thinking about the next year of LTSes and how to organize.
>
> 20.11 will be EOL after the next upcoming release being prepared now,
> as it's now 3 years old. So long, and thanks for all the fixes.
>
> Currently Kevin i
Hello maintainers,
On Thu, Nov 30, 2023 at 10:23 AM David Marchand
wrote:
> For subtree maintainers.
>
> It should change nothing to you guys.
> Please rebase your trees on v24.03-rc0 and push it to dpdk.org.
> And then double check that the mirror happened (looking at git push
> output, and chec
Hi,
Could this patch series be reviewed ? As of now, patches are rebased without
any conflicts.
Thanks,
Gowrishankar
> -Original Message-
> From: Gowrishankar Muthukrishnan
> Sent: Thursday, November 16, 2023 11:15 PM
> To: dev@dpdk.org
> Cc: Anoob Joseph ; Chengwen Feng
> ; Vamsi Krish
Hi,
Could this patch series be reviewed ? As of now, patches are rebased without
any conflicts.
Thanks,
Gowrishankar
> -Original Message-
> From: Gowrishankar Muthukrishnan
> Sent: Wednesday, November 22, 2023 4:36 PM
> To: dev@dpdk.org
> Cc: Anoob Joseph ; Cheng Jiang
> ; Kevin Laatz ;
On Thu, Dec 07, 2023 at 12:42:05PM +0530, sk...@marvell.com wrote:
> From: Sunil Kumar Kori
>
> Use the dpdk-cmdline-gen script to autogenerate all the boilerplate
> structs and defines for the commandline part of the application.
>
> Depends-on: series-30459 ("enhancements for dpdk-cmdline-gen
Thanks for patch! There are some issues.
On Wed, 2023-12-06 at 09:51 -0800, Stephen Hemminger wrote:
>
> diff --git a/drivers/net/nfb/nfb_log.h b/drivers/net/nfb/nfb_log.h
> new file mode 100644
> index ..fac66a38d4b3
> --- /dev/null
> +++ b/drivers/net/nfb/nfb_log.h
> @@ -0,0 +1,13 @
> -Original Message-
> From: Rakesh Kudurumalla
> Sent: Tuesday, December 5, 2023 2:57 PM
> To: Sunil Kumar Kori ; Rakesh Kudurumalla
>
> Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin
> Kumar Dabilpuram
> Subject: [PATCH v4 2/3] app/graph: add ethdev forward command
>
> Adds a tx
> -Original Message-
> From: Rakesh Kudurumalla
> Sent: Tuesday, December 5, 2023 2:57 PM
> To: Sunil Kumar Kori ; Rakesh Kudurumalla
>
> Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin
> Kumar Dabilpuram
> Subject: [PATCH v4 3/3] app/graph: implement port forward usecase
>
> Added
Small correction, moved Geneve to mlx5 PMD updates.
Regards,
Maayan Kashani
From: Maayan Kashani
Sent: Thursday, 7 December 2023 11:29
To: dpdk-dev
Subject: NVIDIA roadmap for 24.03
Please find below NVIDIA roadmap for 24.03 release:
A. rte_flow new APIs
=
1. Add NAT64
This patch introduces new virtio-user callback to map the vq
notification area and implements it for the vhost-vDPA backend.
This is simply done by using mmap()/munmap() for
the vhost-vDPA fd.
This patch also adds a parameter for configuring feature bit
VIRTIO_NET_F_NOTIFICATION_DATA. If feature i
This patch introduces new function to get rss device config
and adds code to forward the RSS control command to backend
through hw control queue if RSS feature is negotiated.
This patch will help to negotiate VIRTIO_NET_F_RSS feature
if vhost-vdpa backend supports RSS in HW.
Signed-off-by: Srujana
On 12/7/2023 1:37 AM, Jie Hai wrote:
> This patchset refactors mailbox codes.
>
> --
> v3:
> 1. fix the checkpatch warning on __atomic_xxx.
> --
>
> Dengdui Huang (4):
> net/hns3: refactor VF mailbox message struct
> net/hns3: refactor PF mailbox message struct
> net/hns3: refactor send mai
On 12/7/2023 1:37 AM, Jie Hai wrote:
> From: Dengdui Huang
>
> The data region in VF to PF mbx message command is
> used to communicate with PF driver. And this data
> region exists as an array. As a result, some complicated
> feature commands, like setting promisc mode, map/unmap
> ring vector a
Add TLS record test suite in cryptodev autotest framework. The test
suite would run based on capabilities exposed by the cryptodev.
The test suite framework is similar to the framework used in case of
IPsec tests. To avoid duplication of code, protocol independent code
is moved to common files and
Move routines performing security caps verifications to a separate file
to allow the usage of same for other protocol tests such as TLS record.
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Velumuri
---
app/test-security-perf/meson.build | 1 +
app/test-security-perf/test_sec
From: Vidya Sagar Velumuri
The algorithm list and associated structs are used for IPsec combined
mode tests. The same list can be employed for other security protocol
testing as well. Move the same to test_security_proto.h for the same.
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Vel
The functions that are used for printing algorithms in case of IPsec can
be moved to the common header, test_security_proto.h. The same could be
used for other security protocol testing.
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Velumuri
---
app/test-security-perf/test_security_per
Add SHA1-HMAC with 12B digest to the auth list. This algorithm would be
used in IPsec tests and combined tests would run on devices that support
the capabilities.
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Velumuri
---
app/test/test_security_proto.h | 6 ++
1 file changed, 6 ins
From: Vidya Sagar Velumuri
Move algorithm list and the associated framework to common files
(test_security_proto.c & .h) to be able to use same framework for other
security offload tests such as TLS record.
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Velumuri
---
app/test-security-
Add framework for testing TLS record cases. The framework supports
testing with known vector tests in both session types (read & write).
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Velumuri
---
app/test/meson.build | 1 +
app/test/test_cryptodev.c
From: Tejasree Kondoj
Add AES-GCM-128 test vector generated with kTLS.
Signed-off-by: Tejasree Kondoj
Signed-off-by: Vidya Sagar Velumuri
---
app/test/test_cryptodev.c | 8 +--
app/test/test_cryptodev_security_tls_record.h | 2 +-
...yptodev_security_tls_record_test_vect
From: Akhil Goyal
Added TLS 1.2 test vectors for AES-128-CBC-SHA1
Signed-off-by: Akhil Goyal
---
app/test/test_cryptodev.c | 8 ++
app/test/test_cryptodev_security_tls_record.h | 1 +
...yptodev_security_tls_record_test_vectors.h | 91 +++
3 files changed,
From: Akhil Goyal
Added test vectors for TLS1.2 and DTLS 1.2 for AES-128-GCM
and AES-256-GCM.
These vectors are generated using GnuTLS server and client applications.
Signed-off-by: Akhil Goyal
Signed-off-by: Vidya Sagar Velumuri
---
app/test/test_cryptodev.c | 43 ++-
a
From: Vidya Sagar Velumuri
Add cases to try TLS record write(encrypt) + read(decrypt) operations.
This is used for testing TLS record features with all algorithms
supported by the security device.
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Velumuri
---
app/test/test_cryptodev.c
Add verification of TLS headers in protocol offload tests.
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Velumuri
---
app/test/test_cryptodev_security_tls_record.c | 118 +-
1 file changed, 117 insertions(+), 1 deletion(-)
diff --git a/app/test/test_cryptodev_security_
From: Vidya Sagar Velumuri
Add following algos to combined mode cases. These are intended primarily
for TLS record combined mode tests.
- AES256-CBC
- SHA256-HMAC
- SHA1-HMAC [20B]
Signed-off-by: Anoob Joseph
Signed-off-by: Vidya Sagar Velumuri
---
app/test/test_security_proto.h | 18 +++
From: Akhil Goyal
Add TLS v1.2 vectors generated using gnuTLS for
AES-256, SHA256, 3DES, CHACHA-POLY
Add DTLS v1.2 test vectors generated using gnuTLS for
AES-128-CBC, AES-256-CBC, SHA1, SHA256, 3DES-CBC,
CHACHA20-POLY1305 and NULL cipher
Signed-off-by: Akhil Goyal
Signed-off-by: Vidya Sagar V
From: Tejasree Kondoj
Add multi segmented buffer test cases in TLS suites.
Signed-off-by: Tejasree Kondoj
Signed-off-by: Vidya Sagar Velumuri
---
app/test/test_cryptodev.c | 29 ++-
app/test/test_cryptodev_security_tls_record.h | 1 +
doc/guides/rel_notes/
This patch dumps contents of receviced packet descriptor from CQ
for debug to file
Signed-off-by: Rakesh Kudurumalla
---
V2: Resolve Warnings
drivers/common/cnxk/roc_cpt.h | 2 +-
drivers/common/cnxk/roc_cpt_debug.c | 56 +
drivers/common/cnxk/roc_nix.h
Add support for eth_rx_descriptor_dump for cn9k and cn10k.
This patch dumps contents of receviced packet descriptor from CQ
for debug to file
Signed-off-by: Rakesh Kudurumalla
---
drivers/net/cnxk/cn10k_ethdev.c | 67 +
drivers/net/cnxk/cn9k_ethdev.c | 53 +++
On 12/7/2023 1:42 AM, Jie Hai wrote:
> Replace the use of gcc builtin __atomic_xxx intrinsics with
> corresponding rte_atomic_xxx optional stdatomic API.
>
> Signed-off-by: Jie Hai
>
<...>
> static void
> @@ -643,8 +643,8 @@ hns3vf_get_push_lsc_cap(struct hns3_hw *hw)
> uint16_t exp = H
On 12/7/2023 1:42 AM, Jie Hai wrote:
> Replace the use of gcc builtin __atomic_xxx intrinsics with
> corresponding rte_atomic_xxx optional stdatomic API.
>
> Signed-off-by: Jie Hai
>
<...>
> diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c
> index b8f7e408d1e0..4572
On 12/7/2023 8:53 AM, Kaiwen Deng wrote:
> IEEE 802 packets may have a minimum size limit. The data fields
> should be padded when necessary. In some cases, the padding data
> is not zero. Testpmd does not trim these IP packets to the true
> length of the frame, so errors will occur when calculatin
A recent thread on the mailing list[1] discussed corelist and coremask
parsing and the idea of a new library dedicated to command line parsing
was mentioned[2]. This patchset adds the library, along with the new
APIs, and edits the existing EAL, DLB2 driver and some example
application functions to
Add a new library to make it easier for eal and other libraries to parse
command line arguments.
The first function in this library is one to parse a corelist string
into an array of individual core ids. The function will then return the
total number of cores described in the corelist.
Signed-off
Add new coremask parsing API. This API behaves similarly
to the corelist parsing API, taking a coremask string, a cores
array and a cores_len int. Parsing the coremask string, filling
its values into the cores array up to cores_len.
The API also returns a 'count' which corresponds to the total num
Update to eal functions relating to corelist and coremask
parsing to support the new arg parsing library. Functions
now call the API instead of implementing their own version.
Signed-off-by: Euan Bourke
---
lib/eal/common/eal_common_options.c | 114
lib/eal/meson.bui
Updates to the parse service cores functions in EAL to call the arg
parser API instead of implementing its own versions.
Signed-off-by: Euan Bourke
---
lib/eal/common/eal_common_options.c | 171 +++-
1 file changed, 41 insertions(+), 130 deletions(-)
diff --git a/lib/eal
Switched the dlb2 driver to call the new arg parsing library instead of
eal for coremask parsing, and updated the resource probe function to
support the changed formatting of the API.
Signed-off-by: Euan Bourke
---
drivers/event/dlb2/dlb2_priv.h | 4 +-
drivers/event/dlb2/pf/base/dl
Two new functions, the first is a 'heuristic parser' which examines a
string describing a set of cores and determines based off heuristics
whether its a coremask or a corelist.
Second is a 'combined parser' which calls the first function and then
based off the returned value will call the relevant
Update to the eventdev_pipeline example application to call the arg parser
library for its 'combined core string parser' instead of implementing its
own coremask parser. The default_type passed into the function call is
a coremask.
Signed-off-by: Euan Bourke
---
examples/eventdev_pipeline/main.c
Update to the l3fwd-power example application to call the arg parser
library for its 'combined core string parser' instead of implementing its
own corelist parser. The default_type passed into the function call is
a corelist.
Signed-off-by: Euan Bourke
---
examples/l3fwd-power/perf_core.c | 51 +
On Thu, Dec 07, 2023 at 04:18:11PM +, Euan Bourke wrote:
> Add a new library to make it easier for eal and other libraries to parse
> command line arguments.
>
> The first function in this library is one to parse a corelist string
> into an array of individual core ids. The function will then
On Thu, Dec 07, 2023 at 04:18:16PM +, Euan Bourke wrote:
> Two new functions, the first is a 'heuristic parser' which examines a
> string describing a set of cores and determines based off heuristics
> whether its a coremask or a corelist.
>
> Second is a 'combined parser' which calls the firs
On Thu, 07 Dec 2023 11:37:52 +0100
Martin Spinler wrote:
> Also, the nfb_rx.h and nfb_tx.h files use the macro NFB_LOG inside,
> please add '#include "nfb_log.h"' into them (then the include in
> nfb_rx.c will be duplicate). Otherwise, all .c sources, which include
> main nfb.h, don't compile.
>
On Thu, 7 Dec 2023 16:18:10 +
Euan Bourke wrote:
> A recent thread on the mailing list[1] discussed corelist and coremask
> parsing and the idea of a new library dedicated to command line parsing
> was mentioned[2]. This patchset adds the library, along with the new
> APIs, and edits the exi
On 12/7/2023 1:57 PM, Ferruh Yigit wrote:
> On 12/7/2023 1:42 AM, Jie Hai wrote:
>> Replace the use of gcc builtin __atomic_xxx intrinsics with
>> corresponding rte_atomic_xxx optional stdatomic API.
>>
>> Signed-off-by: Jie Hai
>>
>
> <...>
>
>> static void
>> @@ -643,8 +643,8 @@ hns3vf_get_pu
The driver has no entries in VALID_KEYS array so there are
no device args. And after parsing it just frees the result.
Looks like it was copy/pasted from some other driver.
Signed-off-by: Stephen Hemminger
---
drivers/net/nfb/nfb.h| 2 --
drivers/net/nfb/nfb_ethdev.c | 16 --
Replace static logtype with dynamic logtype and
remove dead code. Compile tested on Fedora.
Stephen Hemminger (3):
net/nfb: remove unused device args
net/nfb: make device path local to init function
net/nfb: use dynamic logtype
drivers/net/nfb/nfb.h| 10
drivers/net/nfb/nf
The device path is only used to call nfb_open() it does
not have to be stored in internal structure.
Signed-off-by: Stephen Hemminger
---
drivers/net/nfb/nfb.h| 2 --
drivers/net/nfb/nfb_ethdev.c | 8
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/drivers/net/nfb
All drivers should be using dynamic logtype.
Fixes: 6435f9a0ac22 ("net/nfb: add new netcope driver")
Signed-off-by: Stephen Hemminger
---
drivers/net/nfb/nfb.h| 6 +-
drivers/net/nfb/nfb_ethdev.c | 22 +-
drivers/net/nfb/nfb_rx.c | 9 -
drivers/net/n
When EAL is built with MSVC it is possible to dynamically load plugins
on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC
and provide code to load plugins on Windows.
Tyler Retzlaff (1):
eal: initialize shared plugins on Windows
lib/eal/common/eal_common_options.c | 92
When EAL is built with MSVC it is possible to dynamically load plugins
on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC
and provide code to load plugins on Windows.
Signed-off-by: Tyler Retzlaff
---
lib/eal/common/eal_common_options.c | 92 ++
On Thu, Dec 07, 2023 at 04:18:11PM +, Euan Bourke wrote:
> Add a new library to make it easier for eal and other libraries to parse
> command line arguments.
>
> The first function in this library is one to parse a corelist string
> into an array of individual core ids. The function will then
On Thu, Dec 07, 2023 at 11:20:51AM -0800, Tyler Retzlaff wrote:
> When EAL is built with MSVC it is possible to dynamically load plugins
> on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC
> and provide code to load plugins on Windows.
>
> Signed-off-by: Tyler Retzlaff
> ---
Remove Windows maintainers who are no longer working on DPDK and add
myself.
Signed-off-by: Tyler Retzlaff
---
MAINTAINERS | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index 0d1c812..4ac25b1 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -360,8 +
When EAL is built with MSVC it is possible to dynamically load plugins
on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC
and provide code to load plugins on Windows.
v2:
* revert unintended / unrelated whitespace change
* include inttypes.h for use of PRIu32 in log format
When EAL is built with MSVC it is possible to dynamically load plugins
on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC
and provide code to load plugins on Windows.
Signed-off-by: Tyler Retzlaff
---
lib/eal/common/eal_common_options.c | 91 +++---
On Tue, 5 Dec 2023 03:52:58 +
Joyce Kong wrote:
> The platform value would be 'native' only when not cross build.
> Move the operation about modifying cpu_instruction_set while
> platform equals 'native' to the not cross build branch.
>
> Fixes: bf66003b51ec ("build: use platform for generi
88 matches
Mail list logo