From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id 88150924A for ; Thu, 12 Nov 2015 23:08:48 +0100 (CET) Received: by wmww144 with SMTP id w144so6000020wmw.1 for ; Thu, 12 Nov 2015 14:08:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind_com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=1Ti8+Q/sVEwfqZkltf9zYxJuCLIfiCKepglo9up0jyc=; b=qlBejJuY8eb1ntOqAitDfiNHbkHEzmUzDUSJgecbw3GmEJdeWhaBoWBUySa6X+/9S2 xR37xlg1afLNRjcgprh6a96etDDpCqrg8otOCWWvWrqAfwxmsT+Yo1Qp36x6nQp7mnvk O2yy0RjA13c764BdXsotrhKOulnQUBdgsRxrzEQ1/T9cPhs3kkbZzSMSvNlu3DWjNsDP DxTdYes7kzGsoQvuf4PyOoKDYre5sP/UBXTGlk4iSbcB5y9NVFrmgOAefcHDq/h0gD4F 8xebfzeMFb4e/PFPtFGceVBLdfX/fLH/u/AkNtKF5Efbg34GD2cX9x63m/Sb2Y8kcmVD u5aA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=1Ti8+Q/sVEwfqZkltf9zYxJuCLIfiCKepglo9up0jyc=; b=iEruYyDxTnVikin0agqU8AtPFTx0vOGniDtJyd5PW9CZqLbibKO9koeUDnIUgm8P5k JZ86pkXzfDYf1baEpTgoortko7zsSQ32a64fn/G9VJpqRsppkrn6hgWfHolUDuH8/nDZ qqF4w22NLhsK34FNwl5+0KhvcibhggUPrVG46fVocGc23yRvuYIT8U+qA7dFa7QejGv+ Jo3Oy76rWW77GXhGV5Nw429IxUHdJtK15xcMPHeSp1bCbOTxyaPz5F9ucr7xzidjBF4m YanCpiDaB71uIE7xX2AB+ZyVsj4BWB92ZJQlD9KSoCyVHJ+8/fQPFTTcSVjkOtdAfWxX BhAQ== X-Gm-Message-State: ALoCoQk6pwTQCZd0Yr2VGII6AKZycm7JQ4DyfaVbLxarEo4J3Ehul83L0/9pPWf1kOP6KU8ex4QS X-Received: by 10.28.94.194 with SMTP id s185mr49455253wmb.90.1447366128362; Thu, 12 Nov 2015 14:08:48 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id gl9sm16623182wjb.10.2015.11.12.14.08.47 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 12 Nov 2015 14:08:47 -0800 (PST) From: Thomas Monjalon To: Stephen Hemminger Date: Thu, 12 Nov 2015 23:07:35 +0100 Message-ID: <1645329.eliSe8nVmg@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1446771879-3979-1-git-send-email-stephen@networkplumber.org> References: <1446771879-3979-1-git-send-email-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 0/7] ethdev: force deprecation of statistics X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Nov 2015 22:08:48 -0000 2015-11-05 17:04, Stephen Hemminger: > Several fields in ether statistics were tagged with comment that they > were going to be deprecated, but comments don't cause compile warnings. > Instead use Gcc attributes to force the issue. > > Of course to do that, all the drivers and tests which are using > those fields have to be fixed first. > > The input multicast statistic was listed as deprecated, but I find > it useful, and therefore the first patch is to revive it. > > Stephen Hemminger (7): > ether: don't mark input multicast for deprecation not applied > bond: don't sum deprecated statistics > cxgbe: don't report deprecated statistics > i40e: don't report deprecated statistics > e1000: don't report deprecated statistics > test-pmd: remove references to deprecated statistics > rte_ether: mark deprecated statistics with attribute The rest is applied with an extra patch for ip_pipeline example. Thanks