> -Original Message-
> From: Richardson, Bruce
> Sent: Thursday, August 31, 2023 8:34 PM
> To: dev@dpdk.org
> Cc: Richardson, Bruce ; Zhang, Qi Z
> ; sta...@dpdk.org
> Subject: [PATCH v2 1/4] net/i40e: fix buffer leak on Rx reconfiguration
>
> When reconfiguring a single queue on a dev
Let's decide in a techboard meeting whether traces are mandatory or not.
01/09/2023 04:32, Jerin Jacob:
> On Thu, Aug 31, 2023 at 12:08 AM Morten Brørup
> wrote:
> >
> > > From: Thomas Monjalon [mailto:tho...@monjalon.net]
> > > Sent: Wednesday, 30 August 2023 18.24
> > >
> > > 21/08/2023 16:46
On Thu, Aug 31, 2023 at 6:14 PM Thomas Monjalon wrote:
>
> 21/08/2023 10:58, David Marchand:
> > This series was triggered after investigating why the
> > eal_flags_file_prefix_autotest unit test was failing in the case of
> > statically built binaries [1]).
> >
> > For now, I went with a simple (
When a device is created by a secondary process, an empty devargs is
temporarily generated and bound to it. This causes the device to not
be associated with the correct devargs, and the empty devargs are not
released when the resource is freed.
This patch fixes the issue by matching the devargs wh
Although it appears that 'hw' is being used, it is not actually being used.
Look at the following macros which use 'hw':
#define idpf_calloc(h, c, s)rte_zmalloc(NULL, (c) * (s), 0)
#define idpf_free(h, m) rte_free(m)
If I remove '__rte_unused', it will show -Wunused-parameter warning
From: Renyong Wan
Adding minimum PMD code, doc and build infrastructure for sssnic.
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Fixed 'Title underline too short' in doc/guides/nics/sssnic.rst.
* Removed error.h from including files.
---
.mailmap
From: Renyong Wan
Adding log macros to print runtime messages and trace functions.
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/sssnic_ethdev.c | 13
drivers/net/sssnic/sssnic_log.h| 51 ++
2 files changed, 64 insertions
From: Renyong Wan
Initializing hardware base make hardware ready to be access.
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/base/meson.build | 13 ++
drivers/net/sssnic/base/sssnic_hw.c | 207 +++
drivers/net/sssnic/base/sssnic_hw.h
From: Renyong Wan
Register device ID for 3SNIC ethernet adapter to support
PCI ethdev probe and remove.
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/base/sssnic_hw.h | 11 +
drivers/net/sssnic/sssnic_ethdev.c | 37 +
2 files
From: Renyong Wan
sssnic message is used to encapsulate sssnic command for transmission
between driver and firmware. sssnic message is sent by driver via mail
box and is received by driver via event queue.
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Removed error.h from inc
From: Renyong Wan
Event queue is intended for receiving event from hardware as well
as mailbox response message.
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v4:
* Fixed dereferencing type-punned pointer.
* Fixed coding style issue of COMPLEX_MACRO.
---
drivers/net/sssnic/base/me
From: Renyong Wan
Work queue is used to maintain hardware queue information by
driver, it is usually used in control queue, rx queue
and tx queue.
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Removed error.h from including files.
---
drivers/net/sssnic/base/meson.build|
From: Renyong Wan
Mailbox is a message channel used to communicate between PF and
VF as well as driver and hardware functions.
Mailbox messages are received by driver through event queue, and
sent by driver through registers of mailbox.
There are two transfer modes for sending mailbox message, on
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/base/sssnic_api.c | 33
drivers/net/sssnic/base/sssnic_api.h | 8 +++
drivers/net/sssnic/base/sssnic_cmd.h | 14 +
drivers/net/sssnic/base/sssnic_hw.c | 33 +++-
drivers/ne
From: Renyong Wan
Control queue is used for communication between driver and datapath code
of firmware.
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Fixed variable 'cmd_len' is uninitialized when used.
---
drivers/net/sssnic/base/meson.build| 2 +
drivers/net/sssnic/b
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Removed error.h from including files.
v4:
* Fixed coding style issue of REPEATED_WORD.
---
drivers/net/sssnic/meson.build| 1 +
drivers/net/sssnic/sssnic_ethdev.c| 4 +
drivers/net/sssnic/sssnic_
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Removed error.h from including files.
---
doc/guides/nics/features/sssnic.ini | 1 +
drivers/net/sssnic/base/sssnic_api.c| 127
drivers/net/sssnic/base/sssnic_api.h| 14 +++
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
doc/guides/nics/features/sssnic.ini | 2 +
drivers/net/sssnic/base/sssnic_api.c | 174 +
drivers/net/sssnic/base/sssnic_api.h | 4 +
drivers/net/sssnic/base/sssnic_cmd.h | 25 +++
drivers/net/sssn
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/base/sssnic_api.c | 63 +
drivers/net/sssnic/base/sssnic_api.h | 2 +
drivers/net/sssnic/base/sssnic_cmd.h | 49
drivers/net/sssnic/sssnic_ethdev.c| 2 +
drivers/net/sssnic/sssn
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Fixed 'EINVAL' undeclared.
---
doc/guides/nics/features/sssnic.ini| 1 +
drivers/net/sssnic/base/meson.build| 1 +
drivers/net/sssnic/base/sssnic_exception.c | 116 +
drive
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
doc/guides/nics/features/sssnic.ini | 1 +
drivers/net/sssnic/sssnic_ethdev.c| 2 +
drivers/net/sssnic/sssnic_ethdev_tx.c | 155 ++
drivers/net/sssnic/sssnic_ethdev_tx.h | 4 +
4 fil
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Removed error.h from including files.
---
drivers/net/sssnic/meson.build| 1 +
drivers/net/sssnic/sssnic_ethdev.c| 4 +
drivers/net/sssnic/sssnic_ethdev.h| 2 +
drivers/net/sssnic/sssnic_eth
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
doc/guides/nics/features/sssnic.ini | 1 +
drivers/net/sssnic/base/sssnic_hw.c | 14 +++
drivers/net/sssnic/base/sssnic_hw.h | 2 +
drivers/net/sssnic/sssnic_ethdev.c| 2 +
drivers/net/sssnic/sssnic_et
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/sssnic_ethdev.c | 32 ++
1 file changed, 32 insertions(+)
diff --git a/drivers/net/sssnic/sssnic_ethdev.c
b/drivers/net/sssnic/sssnic_ethdev.c
index 8201a1e3c4..b59c4fd3
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/base/sssnic_api.c | 508 ++
drivers/net/sssnic/base/sssnic_api.h | 257 +
drivers/net/sssnic/base/sssnic_cmd.h | 100 +
drivers/net/sssnic/base/sssnic_misc.
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Fixed wrong format of printing uint64_t.
---
doc/guides/nics/features/sssnic.ini | 2 +
drivers/net/sssnic/sssnic_ethdev.c| 2 +
drivers/net/sssnic/sssnic_ethdev_rx.c | 167 ++
d
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Removed error.h from including files.
---
doc/guides/nics/features/sssnic.ini | 3 +
drivers/net/sssnic/base/sssnic_api.c | 154 +
drivers/net/sssnic/base/sssnic_api.h | 116 +++
driver
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
doc/guides/nics/features/sssnic.ini | 2 +
drivers/net/sssnic/sssnic_ethdev.c | 72 +
2 files changed, 74 insertions(+)
diff --git a/doc/guides/nics/features/sssnic.ini
b/doc/guides/nics
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Fixed wrong format of printing uint64_t.
---
doc/guides/nics/features/sssnic.ini | 5 +
drivers/net/sssnic/sssnic_ethdev.c| 1 +
drivers/net/sssnic/sssnic_ethdev_tx.c | 404 ++
d
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/sssnic_ethdev.c | 7 +++
1 file changed, 7 insertions(+)
diff --git a/drivers/net/sssnic/sssnic_ethdev.c
b/drivers/net/sssnic/sssnic_ethdev.c
index a00e96bebe..b086e91d2d 100644
--- a/drivers/n
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Removed error.h from including files.
---
doc/guides/nics/features/sssnic.ini| 4 +
drivers/net/sssnic/base/sssnic_api.c | 338 ++
drivers/net/sssnic/base/sssnic_api.h | 36 +++
dri
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/sssnic_ethdev.c| 2 ++
drivers/net/sssnic/sssnic_ethdev_rx.c | 13 +
drivers/net/sssnic/sssnic_ethdev_rx.h | 2 ++
drivers/net/sssnic/sssnic_ethdev_tx.c | 11 +++
drivers/ne
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
doc/guides/nics/features/sssnic.ini | 1 +
drivers/net/sssnic/base/sssnic_api.c | 68
drivers/net/sssnic/base/sssnic_api.h | 4 ++
drivers/net/sssnic/base/sssnic_cmd.h | 11 +
driver
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
doc/guides/nics/features/sssnic.ini | 1 +
drivers/net/sssnic/base/sssnic_api.c | 36
drivers/net/sssnic/base/sssnic_api.h | 9 +++
drivers/net/sssnic/base/sssnic_cmd.h | 8 +++
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
doc/guides/nics/features/sssnic.ini | 2 +
drivers/net/sssnic/base/sssnic_api.c | 34 +++
drivers/net/sssnic/base/sssnic_api.h | 1 +
drivers/net/sssnic/base/sssnic_cmd.h | 9 +++
drivers/net/sssnic/sssnic_
From: Renyong Wan
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
v2:
* Fixed 'mask->hdr.src_addr' will always evaluate to 'true'.
* Removed error.h from including files.
---
doc/guides/nics/features/sssnic.ini | 12 +
drivers/net/sssnic/base/sssnic_api.c| 264 ++
driv
From: Renyong Wan
In comparison to PF, VF PMD does not support the following features:
1. link up and link down set
2. promiscuous enable and disable
3. MAC stats in extend xstats
Signed-off-by: Steven Song
Signed-off-by: Renyong Wan
---
drivers/net/sssnic/base/sssnic_api.c | 42
On Fri, Sep 1, 2023 at 12:27 PM Ori Kam wrote:
>
>
>
> > -Original Message-
> > From: Jerin Jacob
> > Sent: Friday, September 1, 2023 5:07 AM
> >
> > On Thu, Aug 31, 2023 at 4:02 PM Ori Kam wrote:
> > >
> > > Hi
> >
> > > > >>
> > > > >> 3. Everybody on the call agreed that the P4-progra
On 2023-08-18 08:09, Jerin Jacob wrote:
2) Have new library lib/event_dispatcher
Should the library be named event_dispatcher, or simply dispatcher?
Underscore in library isn't exactly aesthetically pleasing, and shorter
is better. Also, the rte_event_* namespace is avoided altogether.
On Fri, Sep 1, 2023 at 4:23 PM Mattias Rönnblom wrote:
>
> On 2023-08-18 08:09, Jerin Jacob wrote:
>
>
>
> > 2) Have new library lib/event_dispatcher
> >
>
> Should the library be named event_dispatcher, or simply dispatcher?
Looks good to me.
>
> Underscore in library isn't exactly aesthetical
This patchset add rte_flow support for cpfl driver.
It depends on the following patch set:
http://patchwork.dpdk.org/project/dpdk/cover/20230816150541.144532-1-beilei.x...@intel.com/
Wenjing Qiao (4):
net/cpfl: parse flow parser file in devargs
net/cpfl: add flow json parser
net/cpfl: add FX
From: Wenjing Qiao
Add devargs "flow_parser" for rte_flow json parser.
Signed-off-by: Wenjing Qiao
---
doc/guides/nics/cpfl.rst | 32
drivers/net/cpfl/cpfl_ethdev.c | 38 +-
drivers/net/cpfl/cpfl_ethdev.h | 3 +++
drivers/net/
From: Wenjing Qiao
A JSON file will be used to direct DPDK CPF PMD to
parse rte_flow tokens into low level hardware resources
defined in a DDP package file.
Signed-off-by: Wenjing Qiao
---
drivers/net/cpfl/cpfl_flow_parser.c | 1769 +++
drivers/net/cpfl/cpfl_flow_parser
From: Wenjing Qiao
Add FXP low level implementation for CPFL rte_flow to
create/delete rules.
Signed-off-by: Wenjing Qiao
---
drivers/net/cpfl/cpfl_actions.h | 858 +++
drivers/net/cpfl/cpfl_controlq.c | 379 ++
drivers/net/cpfl/cpfl_controlq.h | 51 ++
From: Wenjing Qiao
Setup the control vport and control queue for flow offloading.
Signed-off-by: Yuying Zhang
Signed-off-by: Beilei Xing
Signed-off-by: Qi Zhang
Signed-off-by: Wenjing Qiao
---
drivers/net/cpfl/cpfl_ethdev.c | 267 +
drivers/net/cpfl/cpfl_ethd
Set up the rte_flow backend skeleton. Introduce the framework
to support different engines as rte_flow backend. Bridge rte_flow
driver API to flow engines.
Signed-off-by: Yuying Zhang
---
drivers/net/cpfl/cpfl_ethdev.c | 54 ++
drivers/net/cpfl/cpfl_ethdev.h | 5 +
drivers/net/cpfl/cpfl_f
Added low level fxp module for rule packing / creation / destroying.
Signed-off-by: Yuying Zhang
---
drivers/net/cpfl/cpfl_controlq.c | 424 +++
drivers/net/cpfl/cpfl_controlq.h | 24 ++
drivers/net/cpfl/cpfl_ethdev.c | 31 +++
drivers/net/cpfl/cpfl_ethdev.h |
Adapt fxp low level as a flow engine.
Signed-off-by: Yuying Zhang
---
drivers/net/cpfl/cpfl_ethdev.h | 81
drivers/net/cpfl/cpfl_flow_engine_fxp.c | 583
drivers/net/cpfl/meson.build| 1 +
3 files changed, 665 insertions(+)
create mode 10064
Add flow support for representor, so representor can
create, destroy, validate and flush rules.
Signed-off-by: Yuying Zhang
---
doc/guides/nics/cpfl.rst| 13 +++
doc/guides/rel_notes/release_23_11.rst | 1 +
drivers/net/cpfl/cpfl_flow_engine_fxp.c | 24 +
11/08/2023 14:59, Bruce Richardson:
> On Fri, Aug 11, 2023 at 02:46:13PM +0200, David Marchand wrote:
> > On Wed, Aug 9, 2023 at 3:36 PM Bruce Richardson
> > wrote:
> > >
> > > There is a general desire to reduce the size and scope of EAL. To this
> > > end, this patchset makes a (very) small step
On Fri, Sep 1, 2023 at 11:35 AM wrote:
>
> From: Renyong Wan
>
> Adding minimum PMD code, doc and build infrastructure for sssnic.
>
> Signed-off-by: Steven Song
> Signed-off-by: Renyong Wan
> ---
> v2:
> * Fixed 'Title underline too short' in doc/guides/nics/sssnic.rst.
> * Removed error.h fro
When a new (for example, net) driver gets submitted, the CI scripts
can't determine which subtree (here, dpdk-next-net) this series is
associated to because the MAINTAINERS update for the new driver is
part of the series.
Put meson.build of the drivers classes under the responsibility of
subtree m
31/08/2023 09:51, Bruce Richardson:
> On Mon, Jun 26, 2023 at 03:04:11AM -0500, Abdullah Sevincer wrote:
> > Abdullah Sevincer is now maintainer for DLB Driver.
> >
> > Signed-off-by: Abdullah Sevincer
> > ---
> > MAINTAINERS | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > dif
On 8/22/2023 7:47 PM, Michael Baum wrote:
Add support for matching "ttl" field in MPLS item.
Signed-off-by: Michael Baum
Acked-by: Aman Singh
---
app/test-pmd/cmdline_flow.c | 9 +
1 file changed, 9 insertions(+)
diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline
> -Original Message-
> From: Konstantin Ananyev
> Sent: Friday, September 1, 2023 1:25 AM
> To: Feifei Wang ; Konstantin Ananyev
>
> Cc: dev@dpdk.org; nd ; Honnappa Nagarahalli
> ; Ruifeng Wang
> ; Yuying Zhang ; Beilei
> Xing ; nd
> Subject: RE: [PATCH v11 2/4] net/i40e: implement mb
27/08/2023 10:34, Morten Brørup:
> +CC Honnappa and Konstantin, Ring lib maintainers
> +CC Mattias, PRNG lib maintainer
>
> > From: Bruce Richardson [mailto:bruce.richard...@intel.com]
> > Sent: Friday, 25 August 2023 11.24
> >
> > On Fri, Aug 25, 2023 at 11:06:01AM +0200, Morten Brørup wrote:
>
> From: Thomas Monjalon [mailto:tho...@monjalon.net]
> Sent: Friday, 1 September 2023 13.25
>
> 11/08/2023 14:59, Bruce Richardson:
> > On Fri, Aug 11, 2023 at 02:46:13PM +0200, David Marchand wrote:
> > > On Wed, Aug 9, 2023 at 3:36 PM Bruce Richardson
> > > wrote:
> > > >
> > > > There is a gen
01/09/2023 14:03, David Marchand:
> When a new (for example, net) driver gets submitted, the CI scripts
> can't determine which subtree (here, dpdk-next-net) this series is
> associated to because the MAINTAINERS update for the new driver is
> part of the series.
>
> Put meson.build of the drivers
On Fri, Sep 1, 2023 at 2:28 PM Thomas Monjalon wrote:
>
> 01/09/2023 14:03, David Marchand:
> > When a new (for example, net) driver gets submitted, the CI scripts
> > can't determine which subtree (here, dpdk-next-net) this series is
> > associated to because the MAINTAINERS update for the new dr
> Chandu is not working on dpdk axgbe driver anymore.
>
> Signed-off-by: Selwin Sebastian
> ---
> AMD axgbe
> -M: Chandubabu Namburu
> +M: Selwin Sebastian
>
> Acked-by: Chandubabu Namburu
Applied, thanks.
When a new (for example, net) driver gets submitted, the CI scripts
can't determine which subtree (here, dpdk-next-net) this series is
associated to because the MAINTAINERS update for the new driver is
part of the series.
Put meson.build of the drivers classes under the responsibility of
subtree m
01/09/2023 14:41, David Marchand:
> When a new (for example, net) driver gets submitted, the CI scripts
> can't determine which subtree (here, dpdk-next-net) this series is
> associated to because the MAINTAINERS update for the new driver is
> part of the series.
>
> Put meson.build of the drivers
Hello Abdullah,
In the DLB2 code, I see a thread is created for a single operation:
In drivers/event/dlb2/pf/base/dlb2_resource.c
pthread_create(&pthread, NULL, &dlb2_pp_profile_func, &dlb2_thread_data[i]);
and just after:
pthread_join(pthread, NULL);
Can we avoid creating this thread?
I guess no
> > > >
> > > > Define specific function implementation for i40e driver.
> > > > Currently, mbufs recycle mode can support 128bit vector path and avx2
> > path.
> > > > And can be enabled both in fast free and no fast free mode.
> > > >
> > > > Suggested-by: Honnappa Nagarahalli
> > > > Signed-
When the user passes a list of desired libraries to build via the
"enable_libs" option, the expectation is that those libraries should be
part of the build. However, if those libs have either external or
internal dependencies, they still may be silently disabled, for example:
running "meson setup -
When the user passes a list of desired drivers to build via the
"enable_drivers" option, the expectation is that those drivers should be
part of the build. However, if those drivers have either external or
internal dependencies, they still may be silently disabled, for example:
running "meson setup
On Fri, Sep 1, 2023 at 4:23 PM Bruce Richardson
wrote:
>
> When the user passes a list of desired libraries to build via the
> "enable_libs" option, the expectation is that those libraries should be
> part of the build. However, if those libs have either external or
> internal dependencies, they s
On Fri, Sep 1, 2023 at 4:29 PM David Marchand wrote:
>
> On Fri, Sep 1, 2023 at 4:23 PM Bruce Richardson
> wrote:
> >
> > When the user passes a list of desired libraries to build via the
> > "enable_libs" option, the expectation is that those libraries should be
> > part of the build. However, i
On Fri, Sep 01, 2023 at 04:30:56PM +0200, David Marchand wrote:
> On Fri, Sep 1, 2023 at 4:29 PM David Marchand
> wrote:
> >
> > On Fri, Sep 1, 2023 at 4:23 PM Bruce Richardson
> > wrote:
> > >
> > > When the user passes a list of desired libraries to build via the
> > > "enable_libs" option, th
+PPC maintainer
On Thu, Aug 31, 2023 at 01:10:56PM +0100, Bruce Richardson wrote:
> When building on Ubuntu using the packaged powerpc compiler[1], a
> warning is issued about the print format of the __u64 values.
>
> ../../lib/vhost/vduse.c: In function ‘vduse_vring_setup’:
> ../../lib/vhost/vho
> From: Bruce Richardson [mailto:bruce.richard...@intel.com]
> Sent: Friday, 1 September 2023 16.24
>
> When the user passes a list of desired libraries to build via the
> "enable_libs" option, the expectation is that those libraries should be
> part of the build. However, if those libs have eithe
> From: Bruce Richardson [mailto:bruce.richard...@intel.com]
> Sent: Friday, 1 September 2023 16.24
>
> When the user passes a list of desired drivers to build via the
> "enable_drivers" option, the expectation is that those drivers should be
> part of the build. However, if those drivers have eit
On 5/25/23 20:28, Hernan Vargas wrote:
Rename generic functions and constants using the FPGA 5GNR prefix naming
to prepare for code reuse for new FPGA implementation variant.
No functional impact.
Signed-off-by: Hernan Vargas
---
.../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 117 +++--
On 5/25/23 20:28, Hernan Vargas wrote:
Create a new file vc_5gnr_pmd.h to store structures and macros specific
to Vista Creek 5G FPGA implementation and rename functions specific to
the Vista Creek variant.
Signed-off-by: Hernan Vargas
---
.../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 18
On 2023-09-01 14:26, Thomas Monjalon wrote:
27/08/2023 10:34, Morten Brørup:
+CC Honnappa and Konstantin, Ring lib maintainers
+CC Mattias, PRNG lib maintainer
From: Bruce Richardson [mailto:bruce.richard...@intel.com]
Sent: Friday, 25 August 2023 11.24
On Fri, Aug 25, 2023 at 11:06:01AM +020
On Thu, Aug 31, 2023 at 6:04 AM Juraj Linkeš
wrote:
> WIP: only one module is reformatted to serve as a demonstration.
>
> The google format is documented here [0].
>
> [0]: https://google.github.io/styleguide/pyguide.html
>
> Signed-off-by: Juraj Linkeš
> ---
> dts/framework/testbed_model/node
On 5/25/23 20:28, Hernan Vargas wrote:
Add support for new FPGA variant AGX100 (on Arrow Creek N6000).
Signed-off-by: Hernan Vargas
---
doc/guides/bbdevs/fpga_5gnr_fec.rst | 72 +-
drivers/baseband/fpga_5gnr_fec/agx100_pmd.h | 273
.../baseband/fpga_5gnr_fec/fpga_5gnr
On 5/25/23 20:28, Hernan Vargas wrote:
Cosmetic changes for comments.
No functional impact.
Signed-off-by: Hernan Vargas
---
.../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 93 ++--
.../fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 398 +-
.../fpga_5gnr_fec/rte_pmd_fpga_5g
> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se]
> Sent: Friday, 1 September 2023 18.58
>
> On 2023-09-01 14:26, Thomas Monjalon wrote:
> > 27/08/2023 10:34, Morten Brørup:
> >> +CC Honnappa and Konstantin, Ring lib maintainers
> >> +CC Mattias, PRNG lib maintainer
> >>
> >>> From: Bruce Ri
79 matches
Mail list logo