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 99B78A00C5; Wed, 16 Feb 2022 16:16:52 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B56A8426D4; Wed, 16 Feb 2022 16:15:59 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 2139A411C9; Wed, 16 Feb 2022 16:15:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645024553; x=1676560553; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KGlr12QX+8pjMxZS8Zxwt8NS6lfUge+r4SskGzmPsI0=; b=g/DQklcyQPSd/kGI6Zx9x689KEAeehcynFP//4ux2PiYK57lWh4j164B vicQ9Ftnm3oLeechBAsS5cPeBQxqf8fiPjMeMyo1JT/mkA2SVBzbUQ/5Z w7L7c9Fx2Ak8JNjR5c8BQILiuEkuSLVnkNsoxr//nKCvPOEupcd/tuS6x d09YC8xIzTkIgqWRC5awoJ0j5KTd260+eqsJRroDycM7nrdVdAV2WLyEt YuQEJOc5QCOtLYhwntcJZ7ZznfMsJsmQi3/CE6C5qHz5LXuVSNUDvtbMi M4eoG0TXza9xXFYxN4D5fZsT9IWShomOpZXPb7ikG4SwfwQpKfg1QiwNL A==; X-IronPort-AV: E=McAfee;i="6200,9189,10260"; a="250824582" X-IronPort-AV: E=Sophos;i="5.88,374,1635231600"; d="scan'208";a="250824582" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Feb 2022 07:15:41 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,374,1635231600"; d="scan'208";a="487084601" Received: from unknown (HELO silpixa00400883.ir.intel.com) ([10.243.23.143]) by orsmga003.jf.intel.com with ESMTP; 16 Feb 2022 07:15:40 -0800 From: Brian Dooley To: dev@dpdk.org Cc: Brian Dooley , thomas@monjalon.net, stable@dpdk.org, Bruce Richardson , Akhil Goyal , Fan Zhang Subject: [PATCH v2 11/11] cryptodev: fix missing C++ guards Date: Wed, 16 Feb 2022 15:14:56 +0000 Message-Id: <20220216151456.114242-12-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220216151456.114242-1-brian.dooley@intel.com> References: <20220215170817.662136-1-brian.dooley@intel.com> <20220216151456.114242-1-brian.dooley@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Some public header files were missing 'extern "C"' C++ guards, and couldn't be used by C++ applications. Add the missing guards. Fixes: 7a3357205755 ("lib: remove C++ include guard from private headers") Cc: thomas@monjalon.net Cc: stable@dpdk.org Signed-off-by: Brian Dooley Acked-by: Bruce Richardson --- v2: Added missing apostrophe to commit message. --- lib/cryptodev/cryptodev_pmd.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/cryptodev/cryptodev_pmd.h b/lib/cryptodev/cryptodev_pmd.h index d91902f6e0..24ff1a5480 100644 --- a/lib/cryptodev/cryptodev_pmd.h +++ b/lib/cryptodev/cryptodev_pmd.h @@ -5,6 +5,10 @@ #ifndef _CRYPTODEV_PMD_H_ #define _CRYPTODEV_PMD_H_ +#ifdef __cplusplus +extern "C" { +#endif + /** @file * RTE Crypto PMD APIs * @@ -640,4 +644,8 @@ RTE_STD_C11 struct rte_cryptodev_asym_session { uint8_t sess_private_data[0]; }; +#ifdef __cplusplus +} +#endif + #endif /* _CRYPTODEV_PMD_H_ */ -- 2.25.1