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 83377A00C5; Wed, 16 Feb 2022 16:16:17 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2C733411CE; Wed, 16 Feb 2022 16:15:53 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id C47FB41163; Wed, 16 Feb 2022 16:15:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645024550; x=1676560550; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=leVjn4ZPMKBaS1gaEtjGm2OFB4wPEDea0ZZ4EZ62R94=; b=ZkuoNz1bfvq7OAgHALX38NnQ+E6lWReE40a7chz0ul6ZXmI63e2MIoan NA9qJpvAc0Fb9dDqJTx7MP52XxDzfx1ZbfZ4JbN5wonAUNgurdzlqLPFu EtkRpKW05DoyrCessRZuVgRouErpiXkovUrG5Q515M3VRGITSZdrXr0jG DDpmQZGv6Rx/MxojVaWc6Jep71OxvPANDiu0xjzUZLk6SMPvsRX4vrc20 7Ls3noZIG0ubpeL+U9XbyopV8p+Dg1oJBXoSNHWq4vpQV/76uCDP/CD9m RvKSp/zAL0ZShfTjI3ehBYlHAO+tDBu6Lh1Z/7Xfx1FX63v+JDikPJ3wz Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10260"; a="250824524" X-IronPort-AV: E=Sophos;i="5.88,374,1635231600"; d="scan'208";a="250824524" 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:30 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,374,1635231600"; d="scan'208";a="487084409" Received: from unknown (HELO silpixa00400883.ir.intel.com) ([10.243.23.143]) by orsmga003.jf.intel.com with ESMTP; 16 Feb 2022 07:15:28 -0800 From: Brian Dooley To: dev@dpdk.org Cc: Brian Dooley , fiona.trahe@intel.com, stable@dpdk.org, Bruce Richardson , Fan Zhang , Ashish Gupta , Shally Verma , Pablo de Lara Subject: [PATCH v2 06/11] compressdev: fix missing C++ guards Date: Wed, 16 Feb 2022 15:14:51 +0000 Message-Id: <20220216151456.114242-7-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: ed7dd94f7f66 ("compressdev: add basic device management") Cc: fiona.trahe@intel.com Cc: stable@dpdk.org Signed-off-by: Brian Dooley Acked-by: Bruce Richardson --- v2: Added missing apostrophe to commit message. --- lib/compressdev/rte_compressdev_internal.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/compressdev/rte_compressdev_internal.h b/lib/compressdev/rte_compressdev_internal.h index 22ceac66e2..888c8f5c5c 100644 --- a/lib/compressdev/rte_compressdev_internal.h +++ b/lib/compressdev/rte_compressdev_internal.h @@ -5,6 +5,10 @@ #ifndef _RTE_COMPRESSDEV_INTERNAL_H_ #define _RTE_COMPRESSDEV_INTERNAL_H_ +#ifdef __cplusplus +extern "C" { +#endif + /* rte_compressdev_internal.h * This file holds Compressdev private data structures. */ @@ -111,4 +115,9 @@ struct rte_compressdev_data { void *dev_private; /**< PMD-specific private data */ } __rte_cache_aligned; + +#ifdef __cplusplus +} +#endif + #endif -- 2.25.1