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 9FC43A00C5; Wed, 16 Feb 2022 16:16:32 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 64C2541223; Wed, 16 Feb 2022 16:15:55 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 695C2411B6; Wed, 16 Feb 2022 16:15:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645024551; x=1676560551; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Sf98aO0zo+1mWm0J5+3dWj0RrTIHY4QGVy2Hdhqualo=; b=Y4Nq2jXf8m4szKDeyTy0bBhTfS26mg50XQVqvbmk+ze0qBbUWQZVLkg8 MNSh3lJqD7C/v9kn67QfMxbZcELjlm0g8TMXFa7MDr1p0gGbt9l74JWA6 CT3suWQKk0coU8j2AonOXPMWYIrJv/4JByxwLQmjQdeyIamm+uH8ZvOvd UH1iAanvRl6oF8FoZqQYubSeAlbwRmV3/pbOrgwgdX7JeK6gbodOeA87T 1GGJGR5XScBFBAFJieIVVwNUUC8GIq+5KxJ4C1gc8295hkmb8XbvmfeDc Weynu6+TLc/N1QOnkHPRnTChEzwQNjku7Bv8+EcUQtBwZCsHEcfnKtHry g==; X-IronPort-AV: E=McAfee;i="6200,9189,10260"; a="250824542" X-IronPort-AV: E=Sophos;i="5.88,374,1635231600"; d="scan'208";a="250824542" 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:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,374,1635231600"; d="scan'208";a="487084479" Received: from unknown (HELO silpixa00400883.ir.intel.com) ([10.243.23.143]) by orsmga003.jf.intel.com with ESMTP; 16 Feb 2022 07:15:33 -0800 From: Brian Dooley To: dev@dpdk.org Cc: Brian Dooley , stable@dpdk.org, Bruce Richardson , Ferruh Yigit Subject: [PATCH v2 08/11] kni: fix missing C++ guards Date: Wed, 16 Feb 2022 15:14:53 +0000 Message-Id: <20220216151456.114242-9-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: 3fc5ca2f6352 ("kni: initial import") Cc: stable@dpdk.org Signed-off-by: Brian Dooley Acked-by: Bruce Richardson --- v2: Added missing apostrophe to commit message. --- lib/kni/rte_kni_common.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/kni/rte_kni_common.h b/lib/kni/rte_kni_common.h index b547ea5501..8d3ee0fa4f 100644 --- a/lib/kni/rte_kni_common.h +++ b/lib/kni/rte_kni_common.h @@ -6,6 +6,10 @@ #ifndef _RTE_KNI_COMMON_H_ #define _RTE_KNI_COMMON_H_ +#ifdef __cplusplus +extern "C" { +#endif + #ifdef __KERNEL__ #include #include @@ -136,4 +140,8 @@ struct rte_kni_device_info { #define RTE_KNI_IOCTL_CREATE _IOWR(0, 2, struct rte_kni_device_info) #define RTE_KNI_IOCTL_RELEASE _IOWR(0, 3, struct rte_kni_device_info) +#ifdef __cplusplus +} +#endif + #endif /* _RTE_KNI_COMMON_H_ */ -- 2.25.1