From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Mattias_R=c3=b6nnblom?= Subject: Re: DSW eventdev is getting "stuck"? Date: Wed, 3 Apr 2019 21:02:20 +0200 Message-ID: <2fd8bee9-a375-95b7-eb96-eef8b59e531d@ericsson.com> References: <3353B035-E890-4753-8863-5647DFE61E23@paloaltonetworks.com> <8510f66d-a63e-4ef9-44e1-071758fec6fd@ericsson.com> <3B32DEF7-8563-4BB5-BB01-0BFE29277B37@paloaltonetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit To: Venky Venkatesh , "dev@dpdk.org" Return-path: Received: from mail.lysator.liu.se (mail.lysator.liu.se [130.236.254.3]) by dpdk.org (Postfix) with ESMTP id B49A21B535 for ; Wed, 3 Apr 2019 21:02:21 +0200 (CEST) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 2DAB840007 for ; Wed, 3 Apr 2019 21:02:21 +0200 (CEST) In-Reply-To: <3B32DEF7-8563-4BB5-BB01-0BFE29277B37@paloaltonetworks.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 2019-04-03 20:36, Venky Venkatesh wrote: > > > On 4/3/19, 11:34 AM, "Mattias Rönnblom" wrote: > > On 2019-04-03 20:17, Venky Venkatesh wrote: > > Hi, > > I am using the DSW code from 18.11 with the default settings for all the #defines. Here are some more details: > > I have an 8 port system with 1 queue. > > All ports can inject events. Port 0 and 7 inject events rarely. > > Ports 1-6 are linked to the queue and hence dequeue events. > > > > I see that in steady state the total number enqueues into the system is much greater than the total number of dequeues. > > eventdev deq#: 1948491 enq#: 1949007 > > > > If you have more enqueues than dequeues, it means there are events in > flight in the scheduler. In the above case, it's roughly 516 events, > which sounds perfectly healthy and normal. I say roughly, because > there's no way to take a consistent, global snapshot of all xstats counters. > > [VV]: This is in steady state i.e. there are no more events being injected into the system. So shouldn’t everything get drained out at some point? > Assuming appropriate application behavior, sure, of course. Events in flight are either in the output buffer on the producer port, or the input ring on the consumer. Inappropriate behavior would be if any port (producer, consumer or producer+consumer) is left unattended (i.e. no enqueue or dequeue operation is performed).