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 3C278A00C5; Wed, 16 Feb 2022 16:15:15 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C11CD410FB; Wed, 16 Feb 2022 16:15:14 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 08E0E40150 for ; Wed, 16 Feb 2022 16:15:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645024514; x=1676560514; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XrAMjGpUnEHpl4RmQ/CNlG3zGxL/UMzRDip/tTjaXxQ=; b=f1Z4Lbk3g+jptMRyWBBLK2rl/pz7vRmK60U0T7/bMjKYirXL1Wzc/bxx GnLlN/lDip4XUvwOFLNZGOmOwEVr9QSPwN0aWke50btsg5LngrYXSCteG H3VSJoSYp5tOkPfYZGlAC27zoyS8kYyCgRzsQa4v6CS3B0/vyYZK4xtRB kOiy6uNRy2eBbnwKmrCtxBTpxVd4jDig6m6Y5v7bFCxBoVdwxRpJXipmA YLANwxoLDbbhDxqHJdr9cSdSvnMrlfmkRLS+hxv0OzPJEuw9w0cyl4iKV 3KjYkqF1PRkQJTZttI03skllSonMNCu1b49gYKL4sd42BvtD4weJi3EYZ g==; X-IronPort-AV: E=McAfee;i="6200,9189,10260"; a="250362065" X-IronPort-AV: E=Sophos;i="5.88,374,1635231600"; d="scan'208";a="250362065" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Feb 2022 07:15:12 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,374,1635231600"; d="scan'208";a="487084075" Received: from unknown (HELO silpixa00400883.ir.intel.com) ([10.243.23.143]) by orsmga003.jf.intel.com with ESMTP; 16 Feb 2022 07:15:11 -0800 From: Brian Dooley To: dev@dpdk.org Cc: Brian Dooley Subject: [PATCH v2 00/11] add missing C++ guards Date: Wed, 16 Feb 2022 15:14:45 +0000 Message-Id: <20220216151456.114242-1-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220215170817.662136-1-brian.dooley@intel.com> References: <20220215170817.662136-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 Public header files were missing 'extern "C"' guards. This set adds them in. v2: - Fixed checkpatch errors Brian Dooley (11): eal: fix missing C++ guards telemetry: fix missing C++ guards ethdev: fix missing C++ guards metrics: fix missing C++ guards acl: fix missing C++ guards compressdev: fix missing C++ guards eventdev: fix missing C++ guards kni: fix missing C++ guards vhost: fix missing C++ guards bpf: fix missing C++ guards cryptodev: fix missing C++ guards lib/acl/rte_acl_osdep.h | 8 ++++++++ lib/bpf/bpf_def.h | 8 ++++++++ lib/compressdev/rte_compressdev_internal.h | 9 +++++++++ lib/cryptodev/cryptodev_pmd.h | 8 ++++++++ lib/eal/include/rte_bitops.h | 8 ++++++++ lib/eal/include/rte_branch_prediction.h | 8 ++++++++ lib/eal/include/rte_compat.h | 8 ++++++++ lib/eal/include/rte_hypervisor.h | 8 ++++++++ lib/eal/include/rte_keepalive.h | 8 ++++++++ lib/eal/include/rte_pci_dev_feature_defs.h | 8 ++++++++ lib/eal/include/rte_pci_dev_features.h | 8 ++++++++ lib/eal/include/rte_time.h | 8 ++++++++ lib/eal/include/rte_trace_point_register.h | 8 ++++++++ lib/eal/linux/include/rte_os.h | 8 ++++++++ lib/ethdev/ethdev_driver.h | 8 ++++++++ lib/ethdev/ethdev_pci.h | 8 ++++++++ lib/ethdev/ethdev_vdev.h | 8 ++++++++ lib/ethdev/rte_dev_info.h | 8 ++++++++ lib/eventdev/eventdev_pmd.h | 8 ++++++++ lib/eventdev/eventdev_pmd_pci.h | 8 ++++++++ lib/eventdev/eventdev_pmd_vdev.h | 8 ++++++++ lib/eventdev/rte_event_ring.h | 9 +++++++++ lib/kni/rte_kni_common.h | 8 ++++++++ lib/metrics/rte_metrics_telemetry.h | 7 +++++++ lib/telemetry/rte_telemetry.h | 8 ++++++++ lib/vhost/rte_vdpa.h | 9 +++++++++ lib/vhost/rte_vhost_async.h | 8 ++++++++ lib/vhost/rte_vhost_crypto.h | 8 ++++++++ lib/vhost/vdpa_driver.h | 8 ++++++++ 29 files changed, 234 insertions(+) -- 2.25.1