All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lorenzo Bianconi <lorenzo@kernel.org>
To: Andrew Lunn <andrew@lunn.ch>
Cc: netdev@vger.kernel.org, lorenzo.bianconi@redhat.com,
	davem@davemloft.net, kuba@kernel.org, pabeni@redhat.com,
	thomas.petazzoni@bootlin.com, linux@armlinux.org.uk,
	jbrouer@redhat.com, ilias.apalodimas@linaro.org,
	jdamato@fastly.com
Subject: Re: [PATCH net-next] net: mvneta: add support for page_pool_get_stats
Date: Wed, 6 Apr 2022 16:02:44 +0200	[thread overview]
Message-ID: <Yk2dhD2rjQQaF4Pc@lore-desk> (raw)
In-Reply-To: <Yk2X6KPyeN3z7OUW@lunn.ch>

[-- Attachment #1: Type: text/plain, Size: 2337 bytes --]

> > +static void mvneta_ethtool_update_pp_stats(struct mvneta_port *pp,
> > +					   struct page_pool_stats *stats)
> > +{
> > +	int i;
> > +
> > +	memset(stats, 0, sizeof(*stats));
> > +	for (i = 0; i < rxq_number; i++) {
> > +		struct page_pool *page_pool = pp->rxqs[i].page_pool;
> > +		struct page_pool_stats pp_stats = {};
> > +
> > +		if (!page_pool_get_stats(page_pool, &pp_stats))
> > +			continue;
> > +
> > +		stats->alloc_stats.fast += pp_stats.alloc_stats.fast;
> > +		stats->alloc_stats.slow += pp_stats.alloc_stats.slow;
> > +		stats->alloc_stats.slow_high_order +=
> > +			pp_stats.alloc_stats.slow_high_order;
> > +		stats->alloc_stats.empty += pp_stats.alloc_stats.empty;
> > +		stats->alloc_stats.refill += pp_stats.alloc_stats.refill;
> > +		stats->alloc_stats.waive += pp_stats.alloc_stats.waive;
> > +		stats->recycle_stats.cached += pp_stats.recycle_stats.cached;
> > +		stats->recycle_stats.cache_full +=
> > +			pp_stats.recycle_stats.cache_full;
> > +		stats->recycle_stats.ring += pp_stats.recycle_stats.ring;
> > +		stats->recycle_stats.ring_full +=
> > +			pp_stats.recycle_stats.ring_full;
> > +		stats->recycle_stats.released_refcnt +=
> > +			pp_stats.recycle_stats.released_refcnt;
> 
> Am i right in saying, these are all software stats? They are also
> generic for any receive queue using the page pool?

yes, these stats are accounted by the kernel so they are sw stats, but I guess
xdp ones are sw as well, right?

> 
> It seems odd the driver is doing the addition here. Why not pass stats
> into page_pool_get_stats()? That will make it easier when you add
> additional statistics?
> 
> I'm also wondering if ethtool -S is even the correct API. It should be
> for hardware dependent statistics, those which change between
> implementations. Where as these statistics should be generic. Maybe
> they should be in /sys/class/net/ethX/statistics/ and the driver
> itself is not even involved, the page pool code implements it?

I do not have a strong opinion on it, but I can see an issue for some drivers
(e.g. mvpp2 iirc) where page_pools are not specific for each net_device but are shared
between multiple ports, so maybe it is better to allow the driver to decide how
to report them. What do you think?

Regards,
Lorenzo

> 
>        Andrew

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

  reply	other threads:[~2022-04-06 16:41 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-05 20:32 [PATCH net-next] net: mvneta: add support for page_pool_get_stats Lorenzo Bianconi
2022-04-06 12:49 ` Andrew Lunn
2022-04-06 12:53   ` Ilias Apalodimas
2022-04-06 13:05     ` Lorenzo Bianconi
2022-04-06 13:38 ` Andrew Lunn
2022-04-06 14:02   ` Lorenzo Bianconi [this message]
2022-04-06 23:01     ` Joe Damato
2022-04-06 23:36       ` Andrew Lunn
2022-04-07 16:48         ` Lorenzo Bianconi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Yk2dhD2rjQQaF4Pc@lore-desk \
    --to=lorenzo@kernel.org \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=ilias.apalodimas@linaro.org \
    --cc=jbrouer@redhat.com \
    --cc=jdamato@fastly.com \
    --cc=kuba@kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=lorenzo.bianconi@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=thomas.petazzoni@bootlin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.