RE: [EXTERNAL] Re: [PATCH v2] cryptodev: fix C++ include

2025-01-08 Thread Akhil Goyal
> On 2024-12-19 14:30, Thomas Monjalon wrote: > > Some cryptodev functions were not included in an extern "C" block. > > > > There are 2 blocks, the second one being fast path inline functions, > > preceded with an include of the required rte_cryptodev_core.h file. > > > > Fixes: 719834a6849e ("use

Re: [PATCH v2] cryptodev: fix C++ include

2024-12-19 Thread Mattias Rönnblom
On 2024-12-19 16:37, David Marchand wrote: On Thu, Dec 19, 2024 at 2:31 PM Thomas Monjalon wrote: Some cryptodev functions were not included in an extern "C" block. There are 2 blocks, the second one being fast path inline functions, preceded with an include of the required rte_cryptodev_core

Re: [PATCH v2] cryptodev: fix C++ include

2024-12-19 Thread Mattias Rönnblom
On 2024-12-19 14:30, Thomas Monjalon wrote: Some cryptodev functions were not included in an extern "C" block. There are 2 blocks, the second one being fast path inline functions, preceded with an include of the required rte_cryptodev_core.h file. Fixes: 719834a6849e ("use C linkage where appro

Re: [PATCH v2] cryptodev: fix C++ include

2024-12-19 Thread David Marchand
On Thu, Dec 19, 2024 at 2:31 PM Thomas Monjalon wrote: > > Some cryptodev functions were not included in an extern "C" block. > > There are 2 blocks, the second one being fast path inline functions, > preceded with an include of the required rte_cryptodev_core.h file. > > Fixes: 719834a6849e ("use

[PATCH v2] cryptodev: fix C++ include

2024-12-19 Thread Thomas Monjalon
Some cryptodev functions were not included in an extern "C" block. There are 2 blocks, the second one being fast path inline functions, preceded with an include of the required rte_cryptodev_core.h file. Fixes: 719834a6849e ("use C linkage where appropriate in headers") Cc: sta...@dpdk.org Repor