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 <maryam.tahhan at intel.com>
> - 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.