From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dmitry Vyal Subject: Re: dropped packet count Date: Wed, 09 Oct 2013 11:35:55 +0400 Message-ID: <5255075B.9040505@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit To: John Lange , "dev-VfR2kkLFssw@public.gmane.org" Return-path: In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Hi John, take a look at void rte_eth_stats_get(uint8_t /port_id/, struct rte_eth_stats */stats);/ http://dpdk.org/doc/api/rte__ethdev_8h.html#aac7b274a66c959f827a0750eaf22a5cb The structure it fills has a member q_errors which seems to be what you're looking for. Regards, Dmitry On 10/09/2013 12:38 AM, John Lange wrote: > Greetings, > > Is there a standard way of retrieving the dropped packet count for a particular port/queue in the DPDK? If no way is currently defined, could this please be added in a future version? > > Thanks!