From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.mhcomputing.net (master.mhcomputing.net [74.208.228.170]) by dpdk.org (Postfix) with ESMTP id 719338E6C for ; Mon, 23 Nov 2015 00:53:44 +0100 (CET) Received: by mail.mhcomputing.net (Postfix, from userid 1000) id 36EEF17A; Sun, 22 Nov 2015 18:53:42 -0500 (EST) Date: Sun, 22 Nov 2015 18:53:42 -0500 From: Matthew Hall To: dev@dpdk.org Message-ID: <20151122235342.GA28210@mhcomputing.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Subject: [dpdk-dev] missing __rte_deprecated on rte_eth_stats.imcasts ? 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: Sun, 22 Nov 2015 23:53:44 -0000 I was reading through the deprecations in rte_eth_stats to see if I could fix the pktgen. Of course many fields were marked with __rte_deprecated . However I found this one field which said deprecated in its comment, but it lacked __rte_deprecated . Is the comment wrong, or is the field definition wrong, or did I miss something? uint64_t imcasts; /**< Deprecated; Total number of multicast received packets. */ Matthew.