[PATCH v7] app/procinfo: display eventdev xstats

2023-03-09 Thread Abdullah Sevincer
This commit extends proc-info application to display xstats for the eventdev devices. New command line arguments are introduced to display xstats for eventdev devices. The command example is like: For displaying a specific port stats (e.g. port 1): ./dpdk-proc-info -- --show-edev-port-xstats=1 I

Re: [PATCH v7] app/procinfo: display eventdev xstats

2023-03-09 Thread Stephen Hemminger
On Thu, 9 Mar 2023 12:27:58 -0600 Abdullah Sevincer wrote: > > +/* Note: Port_queue_id in xstats APIs is 8 bits, so we have a maximum of > + * 256 ports and queues for event_Dev > + */ > +#define MAX_PORTS_QUEUES 256 > + There is a goal of removing the per-queue stats part in generic stats. A

RE: [PATCH v7] app/procinfo: display eventdev xstats

2023-03-10 Thread Sevincer, Abdullah
From: Stephen Hemminger Sent: Thursday, March 9, 2023 12:32 PM To: Sevincer, Abdullah Cc: dev@dpdk.org; jer...@marvell.com; Pattan, Reshma Subject: Re: [PATCH v7] app/procinfo: display eventdev xstats On Thu, 9 Mar 2023 12:27:58 -0600 Abdullah Sevincer wrote: > > +/

Re: [PATCH v7] app/procinfo: display eventdev xstats

2023-03-10 Thread Stephen Hemminger
On Fri, 10 Mar 2023 17:35:31 + "Sevincer, Abdullah" wrote: > > > > +/* Note: Port_queue_id in xstats APIs is 8 bits, so we have a maximum > > +of > > + * 256 ports and queues for event_Dev */ #define MAX_PORTS_QUEUES > > +256 > > + > > >There is a goal of removing the per-queue stats

RE: [PATCH v7] app/procinfo: display eventdev xstats

2023-03-10 Thread Sevincer, Abdullah
> > > > +/* Note: Port_queue_id in xstats APIs is 8 bits, so we have a > > +maximum of > > + * 256 ports and queues for event_Dev */ #define MAX_PORTS_QUEUES > > +256 > > + > > >There is a goal of removing the per-queue stats part in generic stats. > >And in the process removing that limit