RE: [EXTERNAL] Re: [PATCH] doc: deprecate graph data structures

2024-03-20 Thread Pavan Nikhilesh Bhagavatula
> On Tue, 19 Mar 2024 08:52:13 +0530 > Jerin Jacob wrote: > > > On Wed, Feb 21, 2024 at 9:43 PM wrote: > > > > > > From: Pavan Nikhilesh > > > > > > Deprecate rte_node, rte_node_register and rte_graph_cluster_node_stats > > > structures as will be extended to include node specific error counter

RE: [PATCH v2] dmadev: fix structure alignment

2024-03-20 Thread Ma, WenwuX
Hi chengwen, > -Original Message- > From: fengchengwen > Sent: Wednesday, March 20, 2024 12:12 PM > To: Ma, WenwuX ; dev@dpdk.org > Cc: Jiale, SongX ; sta...@dpdk.org; Pavan Nikhilesh > ; Thomas Monjalon > Subject: Re: [PATCH v2] dmadev: fix structure alignment > > Hi Wenwu, > > On 202

[PATCH v3] dmadev: fix structure alignment

2024-03-20 Thread Wenwu Ma
The structure rte_dma_dev needs to be aligned to the cache line, but the return value of malloc may not be aligned to the cache line. When we use memset to clear the rte_dma_dev object, it may cause a segmentation fault in clang-x86-platform. This is because clang uses the "vmovaps" assembly instr

RE: [EXTERNAL] [PATCH v7 2/4] hash: optimize compare signature for NEON

2024-03-20 Thread Pavan Nikhilesh Bhagavatula
> Upon a successful comparison, NEON sets all the bits in the lane to 1 > We can skip shifting by simply masking with specific masks. > > Signed-off-by: Yoan Picchi > Reviewed-by: Ruifeng Wang > Reviewed-by: Nathan Brown > --- > lib/hash/arch/arm/compare_signatures.h | 24 +++--

RE: fib{,6}: questions and proposals

2024-03-20 Thread Morten Brørup
> From: Robin Jarry [mailto:rja...@redhat.com] > Sent: Tuesday, 19 March 2024 21.39 > > Hi Vladimir, > > Medvedkin, Vladimir, Mar 19, 2024 at 18:16: [...] > > > 4) In rte_fib, every IPv4 address (route *and* next hop) needs to be > > >in host order. This is not consistent with fib6 where ad

Minutes of Technical Board meeting 06-March-2024

2024-03-20 Thread Morten Brørup
Members Attending = Aaron Conole Bruce Richardson Hemant Agrawal Honappa Nagarahalli Jerin Jacob Kevin Traynor Konstantin Ananyev Maxime Coquelin Morten Brørup (chair) Stephen Hemminger Thomas Monjalon NOTE The technical board meetings are on every second Wednesday at 3 pm UTC

RE: [PATCH v9 5/5] eal: add option to put timestamp on console output

2024-03-20 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Wednesday, 20 March 2024 04.34 > > On Tue, 19 Mar 2024 17:13:35 +0100 > Morten Brørup wrote: > > > > From: Stephen Hemminger [mailto:step...@networkplumber.org] > > > Sent: Tuesday, 19 March 2024 16.52 > > > > > > On Tue, 19 M

RE: [PATCH] graph: fix head move when graph walk in mcore dispatch

2024-03-20 Thread Yan, Zhirun
> -Original Message- > From: Wu, Jingjing > Sent: Wednesday, March 20, 2024 2:25 PM > To: Yan, Zhirun ; dev@dpdk.org > Cc: jer...@marvell.com; pbhagavat...@marvell.com; sta...@dpdk.org > Subject: RE: [PATCH] graph: fix head move when graph walk in mcore dispatch > > > > > /*

Re: [PATCH v3] dmadev: fix structure alignment

2024-03-20 Thread fengchengwen
Reviewed-by: Chengwen Feng On 2024/3/20 15:23, Wenwu Ma wrote: > The structure rte_dma_dev needs to be aligned to the cache line, but > the return value of malloc may not be aligned to the cache line. When > we use memset to clear the rte_dma_dev object, it may cause a segmentation > fault in cla

RE: [PATCH v1] doc: update QAT compression doc IDs

2024-03-20 Thread Power, Ciara
> -Original Message- > From: Sivaramakrishnan, VenkatX > Sent: Wednesday, February 28, 2024 9:21 AM > Cc: dev@dpdk.org; Power, Ciara ; Sivaramakrishnan, > VenkatX > Subject: [PATCH v1] doc: update QAT compression doc IDs > > Missing GEN2, GEN3 and GEN4 devices updated for the QAT comp

RE: [PATCH v4] doc: update guideline for fix commit messages

2024-03-20 Thread Power, Ciara
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, February 8, 2024 11:36 AM > To: Sivaramakrishnan, VenkatX > Cc: dev@dpdk.org; Power, Ciara > Subject: Re: [PATCH v4] doc: update guideline for fix commit messages > > On 2/8/2024 10:51 AM, Sivaramakrishnan Venkat wrote: > > M

Re: [PATCH] app/testpmd: fix auto completion for indirect list action

2024-03-20 Thread Ferruh Yigit
On 3/20/2024 6:06 AM, Gregory Etelson wrote: > Hello Ferruh, > >>BUT overall how can we catch issues like this in the feature, we don't >>have a good way to test testpmd flow commands. >>@Ori, @Gregory, do you have any idea? >>cc'ed CI mail list too. > > We have a tool for unit tests based on the

Re: [RFC v5 1/6] eal: add static per-lcore memory allocation facility

2024-03-20 Thread Mattias Rönnblom
On 2024-03-19 13:52, Konstantin Ananyev wrote: Hi Mattias, Introduce DPDK per-lcore id variables, or lcore variables for short. An lcore variable has one value for every current and future lcore id-equipped thread. The primary use case is for statically allocating small chunks of often-used

[PATCH 0/2] introduce PM QoS interface

2024-03-20 Thread Huisong Li
Subject: [PATCH 0/2] introduce PM QoS interface The system-wide CPU latency QoS limit has a positive impact on the idle state selection in cpuidle governor. Linux creates a cpu_dma_latency device under '/dev' directory to obtain the CPU latency QoS limit on system and s

[PATCH 2/2] examples/l3fwd-power: add PM QoS request configuration

2024-03-20 Thread Huisong Li
Add PM QoS request configuration to declease the process resume latency. Signed-off-by: Huisong Li --- examples/l3fwd-power/main.c | 41 - 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/examples/l3fwd-power/main.c b/examples/l3fwd-power/main.c i

[PATCH 1/2] power: introduce PM QoS interface

2024-03-20 Thread Huisong Li
The system-wide CPU latency QoS limit has a positive impact on the idle state selection in cpuidle governor. Linux creates a cpu_dma_latency device under '/dev' directory to obtain the CPU latency QoS limit on system and send the QoS request for userspace. Please see the PM QoS framework in the fo

Re: [PATCH v3] dmadev: fix structure alignment

2024-03-20 Thread Thomas Monjalon
20/03/2024 08:23, Wenwu Ma: > The structure rte_dma_dev needs to be aligned to the cache line, but > the return value of malloc may not be aligned to the cache line. When > we use memset to clear the rte_dma_dev object, it may cause a segmentation > fault in clang-x86-platform. > > This is because

Re: [PATCH 0/3] support setting lanes

2024-03-20 Thread Thomas Monjalon
18/03/2024 22:26, Damodharam Ammepalli: > On Mon, Mar 18, 2024 at 7:56 AM Thomas Monjalon wrote: > > > > 12/03/2024 08:52, Dengdui Huang: > > > Some speeds can be achieved with different number of lanes. For example, > > > 100Gbps can be achieved using two lanes of 50Gbps or four lanes of 25Gbps.

Re: release candidate 24.03-rc1

2024-03-20 Thread Ferruh Yigit
On 2/22/2024 7:35 AM, Thomas Monjalon wrote: > A new DPDK release candidate is ready for testing: > https://git.dpdk.org/dpdk/tag/?id=v24.03-rc1 > > There are 521 new patches in this snapshot. > > Release notes: > https://doc.dpdk.org/guides/rel_notes/release_24_03.html > > Highlight

Re: [PATCH 0/3] support setting lanes

2024-03-20 Thread Ferruh Yigit
On 3/18/2024 9:26 PM, Damodharam Ammepalli wrote: > On Mon, Mar 18, 2024 at 7:56 AM Thomas Monjalon wrote: >> >> 12/03/2024 08:52, Dengdui Huang: >>> Some speeds can be achieved with different number of lanes. For example, >>> 100Gbps can be achieved using two lanes of 50Gbps or four lanes of 25Gb

[PATCH] devtools: add acronyms in dictionary for commit checks

2024-03-20 Thread Ferruh Yigit
ELF -> Executable and Linkable Format Ethernet -> with an uppercase “E” mark -> 'mark' flow action, no need to capitalise max -> maximum XSK -> XDP Socket. XDP (eXpress Data Path) Signed-off-by: Ferruh Yigit --- devtools/words-case.txt | 5 + 1 file changed, 5 insertions(+

Re: [PATCH] devtools: add acronyms in dictionary for commit checks

2024-03-20 Thread Bruce Richardson
On Wed, Mar 20, 2024 at 12:40:47PM +, Ferruh Yigit wrote: > ELF -> Executable and Linkable Format > Ethernet -> with an uppercase “E” > mark -> 'mark' flow action, no need to capitalise > max -> maximum > XSK -> XDP Socket. XDP (eXpress Data Path) > > Signed-off-by: Ferruh Y

Re: [PATCH] app/testpmd: dump TCI when asking for VLAN insertion

2024-03-20 Thread Ferruh Yigit
On 3/18/2024 8:02 AM, David Marchand wrote: > I got some report for users that VLAN insertion was not working as the > only thing they could see in verbose mode was a 0x0800 ethertype even > though the RTE_MBUF_F_TX_VLAN flag was shown. > > Dump the VLAN TCI from mbuf metadata when VLAN insertion

RE: [PATCH 0/2] introduce PM QoS interface

2024-03-20 Thread Morten Brørup
> From: Huisong Li [mailto:lihuis...@huawei.com] > Sent: Wednesday, 20 March 2024 11.55 > > The system-wide CPU latency QoS limit has a positive impact on the idle > state selection in cpuidle governor. > > Linux creates a cpu_dma_latency device under '/dev' directory to obtain the > CPU latency

RE: [RFC v5 1/6] eal: add static per-lcore memory allocation facility

2024-03-20 Thread Konstantin Ananyev
> >> Introduce DPDK per-lcore id variables, or lcore variables for short. > >> > >> An lcore variable has one value for every current and future lcore > >> id-equipped thread. > >> > >> The primary use case is for statically allocating > >> small chunks of often-used data, which is related logic

Re: [PATCH v9 5/5] eal: add option to put timestamp on console output

2024-03-20 Thread Stephen Hemminger
On Wed, 20 Mar 2024 09:34:21 +0100 Morten Brørup wrote: > > From: Stephen Hemminger [mailto:step...@networkplumber.org] > > Sent: Wednesday, 20 March 2024 04.34 > > > > On Tue, 19 Mar 2024 17:13:35 +0100 > > Morten Brørup wrote: > > > > > > From: Stephen Hemminger [mailto:step...@networkplum

[PATCH] net/ena: fix mbuf double free in fast free mode

2024-03-20 Thread shaibran
From: Shai Brandes Fixed an issue of double free of mbufs which is exposed in mbuf fast free mode when handling multi-mbuf packets. The faulty patch mishandled free of non-head mbufs as it iterated over linked mbufs and collected them into an array, which was then passed to rte_pktmbuf_free_bulk

[PATCH 00/83] move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
The current location used for __rte_aligned(a) for alignment of types and variables is not compatible with MSVC. There is only a single location accepted by both toolchains. After having established this as the conventional standard for lib/* this series is intended to convert the remainder of the

[PATCH 01/83] examples: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 02/83] net/ark: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 03/83] net/avp: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 04/83] net/axgbe: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 05/83] net/bnxt: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 06/83] net/bonding: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 07/83] net/cxgbe: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 08/83] net/e1000: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 09/83] net/ena: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 11/83] net/fm10k: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 10/83] net/enic: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 12/83] net/hinic: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 13/83] net/hns3: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 14/83] net/i40e: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 15/83] net/iavf: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 16/83] net/ice: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 17/83] net/igc: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 18/83] net/ionic: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 19/83] net/ixgbe: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 20/83] net/memif: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 21/83] net/mlx5: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 22/83] net/mlx4: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 24/83] net/netvsc: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 25/83] net/nfp: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 26/83] net/ngbe: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 28/83] net/pfe: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 23/83] net/mvpp2: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 29/83] net/qede: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 27/83] net/octeontx: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 30/83] net/softnic: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 31/83] net/tap: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 32/83] net/thunderx: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 33/83] net/txgbe: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 34/83] net/virtio: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 35/83] vdpa/mlx5: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 37/83] raw/ntb: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 36/83] regex/cn9k: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 38/83] ml/cnxk: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 39/83] mempool/cnxk: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 40/83] event/sw: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 41/83] event/skeleton: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 42/83] event/opdl: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 43/83] event/octeontx: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 44/83] event/dsw: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 45/83] event/dlb2: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 58/83] crypto/ipsec_mb: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 59/83] crypto/cnxk: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 61/83] crypto/caam_jr: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 63/83] crypto/armv8: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 64/83] compress/zlib: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 66/83] compress/octeontx: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 67/83] compress/nitrox: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 69/83] common/qat: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 70/83] common/mlx5: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 71/83] common/idpf: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 72/83] common/cpt: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 74/83] baseband/turbo_sw: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 76/83] app/test: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 77/83] app/test-pipeline: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 79/83] app/test-flow-perf: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 80/83] app/test-eventdev: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 82/83] app/graph: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 83/83] bus/dpaa: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 46/83] event/cnxk: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 47/83] dma/skeleton: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 48/83] dma/ioat: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 50/83] crypto/uadk: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 49/83] dma/idxd: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 52/83] crypto/qat: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 51/83] crypto/scheduler: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 53/83] crypto/openssl: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

[PATCH 55/83] crypto/null: move alignment attribute on types

2024-03-20 Thread Tyler Retzlaff
Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating docume

  1   2   3   >