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 70476A00C5; Tue, 15 Feb 2022 18:13:20 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0F470410F7; Tue, 15 Feb 2022 18:13:20 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 953EE410F3 for ; Tue, 15 Feb 2022 18:13:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644945198; x=1676481198; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=+920gVOTI3hBT+mLyUUZCQj2vAnURgfERnoeUETthqo=; b=QcU4coVc3AV76B8Gq2e4GYRAQzYZkhlsSm8uH0FBU0kAep9pTO0A/BwM GfAFfBjPaPfXvJPmYxClr/AOhELjk2CBQth3yVh8gldeDLYoXzWX6yQAJ NnXQDi8zUeTxuESv+LtcmuduQjHhVjkSkJ+vV/pqUXS5ePsNronRnaZt4 wGpUGEwTk2IY6Ton1WxamkK/8IYYr5jMfUBvAQyiKiTlvY1DL5Gopflvq 9Rs9+6r0GBMCQS82HCSBqAu1yGSj0a6Ds1jF3ztMjkcZ4lp5vRcMHl2d4 7wtyh1wd69Pys4CAo4cOoIshVZ8VmU0cZfdJ65b6A9z969agKPqUBTgeZ w==; X-IronPort-AV: E=McAfee;i="6200,9189,10259"; a="336830957" X-IronPort-AV: E=Sophos;i="5.88,371,1635231600"; d="scan'208";a="336830957" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Feb 2022 09:08:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,371,1635231600"; d="scan'208";a="703802147" Received: from silpixa00400883.ir.intel.com ([10.243.23.143]) by orsmga005.jf.intel.com with ESMTP; 15 Feb 2022 09:08:21 -0800 From: Brian Dooley To: dev@dpdk.org Cc: Brian Dooley Subject: [PATCH 00/11] add missing C++ guards Date: Tue, 15 Feb 2022 17:08:06 +0000 Message-Id: <20220215170817.662136-1-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 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. 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