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 D46A4A00C5; Tue, 15 Feb 2022 18:32:09 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C05AC410F7; Tue, 15 Feb 2022 18:32:09 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 855AF410F3 for ; Tue, 15 Feb 2022 18:32:08 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644946328; x=1676482328; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=F7wFWGOsWjkzocH/mB0TLjxnq9LMz47Bc/PrAUb8O5I=; b=FOFpXxjOMmjTnNMVFLCN6bjCpaMPeB1o1OMVaAD7za7uFm3lHdABKDnq k3vZsZSAWj7s44piTx62CcGQGKDmc6Y1ZM8YkKEwu+7lCiPsmBbC9LNSd mOdhk2g0OL+GEcYQGcfXHSwNqBk7ZpqVqM3vvunBnpjhKr/M1L/5Yc5Uu FoxtwAmDgxa4m/b3nzHn/jt3JbxWVHyofrjfxwiWoHfAW67cYDcFsX7yX Lzq01BiBt7ZR6BEu24a8LMyfhLC91pbbYPUJ4fMBc4eGr1RviuL/z6chT yCDhOjKRnG72t8f6VfRwGYBnkjW0UUO0xT72/Au7HCME8r16LXPFF1RSW g==; X-IronPort-AV: E=McAfee;i="6200,9189,10259"; a="250148035" X-IronPort-AV: E=Sophos;i="5.88,371,1635231600"; d="scan'208";a="250148035" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Feb 2022 09:32:07 -0800 X-IronPort-AV: E=Sophos;i="5.88,371,1635231600"; d="scan'208";a="486270683" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.21.146]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 15 Feb 2022 09:32:06 -0800 Date: Tue, 15 Feb 2022 17:32:03 +0000 From: Bruce Richardson To: Brian Dooley Cc: dev@dpdk.org Subject: Re: [PATCH 00/11] add missing C++ guards Message-ID: References: <20220215170817.662136-1-brian.dooley@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220215170817.662136-1-brian.dooley@intel.com> 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 On Tue, Feb 15, 2022 at 05:08:06PM +0000, Brian Dooley wrote: > 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 > Good cleanup to have for compatibility. Series-Acked-by: Bruce Richardson