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

2024-12-19 Thread Thomas Monjalon
19/12/2024 13:24, Akhil Goyal: > > Some cryptodev functions were not included in the extern "C" block, > > so it is moved to start before. > > > > An include is also moved to avoid being part of this block. [...] > > --- a/lib/cryptodev/rte_cryptodev.h > > +++ b/lib/cryptodev/rte_cryptodev.h > > @

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

2024-12-19 Thread Akhil Goyal
> Some cryptodev functions were not included in the extern "C" block, > so it is moved to start before. > > An include is also moved to avoid being part of this block. > > Fixes: 719834a6849e ("use C linkage where appropriate in headers") > Cc: sta...@dpdk.org > > Reported-by: Zhigang Hu > Sign

[PATCH] cryptodev: fix C++ include

2024-12-19 Thread Thomas Monjalon
Some cryptodev functions were not included in the extern "C" block, so it is moved to start before. An include is also moved to avoid being part of this block. Fixes: 719834a6849e ("use C linkage where appropriate in headers") Cc: sta...@dpdk.org Reported-by: Zhigang Hu Signed-off-by: Thomas Mo