From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v6 4/9] ethdev: remove HW specific stats in stats structs Date: Fri, 17 Jul 2015 01:04:17 +0200 Message-ID: <14827227.16LvSo2xtm@xps13> References: <1436965894-130019-1-git-send-email-maryam.tahhan@intel.com> <1436965894-130019-5-git-send-email-maryam.tahhan@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Maryam Tahhan Return-path: Received: from mail-wg0-f46.google.com (mail-wg0-f46.google.com [74.125.82.46]) by dpdk.org (Postfix) with ESMTP id F3B105A51 for ; Fri, 17 Jul 2015 01:05:30 +0200 (CEST) Received: by wgav7 with SMTP id v7so4028290wga.2 for ; Thu, 16 Jul 2015 16:05:30 -0700 (PDT) In-Reply-To: <1436965894-130019-5-git-send-email-maryam.tahhan@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2015-07-15 14:11, Maryam Tahhan: > Remove non generic stats in rte_stats_strings and mark the relevant > fields in struct rte_eth_stats as deprecated. > > Signed-off-by: Maryam Tahhan > - uint64_t imissed; /**< Total of RX missed packets (e.g full FIFO). */ > - uint64_t ibadcrc; /**< Total of RX packets with CRC error. */ > - uint64_t ibadlen; /**< Total of RX packets with bad length. */ > + /**< Deprecated; Total of RX missed packets (e.g full FIFO). */ > + uint64_t imissed; > + /**< Deprecated; Total of RX packets with CRC error. */ > + uint64_t ibadcrc; > + /**< Deprecated; Total of RX packets with bad length. */ > + uint64_t ibadlen; The /**< style comments must be put *after* the field.