From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E98B045EED for ; Thu, 19 Dec 2024 17:37:02 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B4BA54025F; Thu, 19 Dec 2024 17:37:02 +0100 (CET) Received: from mail.lysator.liu.se (mail.lysator.liu.se [130.236.254.3]) by mails.dpdk.org (Postfix) with ESMTP id A9D584025F; Thu, 19 Dec 2024 17:37:01 +0100 (CET) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 6EDAB111A2; Thu, 19 Dec 2024 17:37:01 +0100 (CET) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id 620561121A; Thu, 19 Dec 2024 17:37:01 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on hermod.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL, T_SCC_BODY_TEXT_LINE autolearn=disabled version=4.0.0 X-Spam-Score: -1.2 Received: from [192.168.1.85] (h-62-63-215-114.A163.priv.bahnhof.se [62.63.215.114]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id BE36811218; Thu, 19 Dec 2024 17:36:59 +0100 (CET) Message-ID: <1914bf32-d3c7-4da4-9f7b-8adf1ddebc5a@lysator.liu.se> Date: Thu, 19 Dec 2024 17:36:59 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2] cryptodev: fix C++ include To: David Marchand , Thomas Monjalon Cc: dev@dpdk.org, stable@dpdk.org, Zhigang Hu , Akhil Goyal , Fan Zhang , =?UTF-8?Q?Morten_Br=C3=B8rup?= , =?UTF-8?Q?Mattias_R=C3=B6nnblom?= References: <20241219133139.420001-1-thomas@monjalon.net> Content-Language: en-US From: =?UTF-8?Q?Mattias_R=C3=B6nnblom?= In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org 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.h file. >> >> Fixes: 719834a6849e ("use C linkage where appropriate in headers") >> Cc: stable@dpdk.org >> >> Reported-by: Zhigang Hu >> Signed-off-by: Thomas Monjalon > > I wonder if there is also an issue with > lib/cryptodev/rte_crypto_asym.h, for symbols > rte_crypto_asym_ke_strings and rte_crypto_asym_op_strings. +1 > But at least this patch looks fine to me. > > Reviewed-by: David Marchand > >