From: Sean Anderson <sean.anderson@linux.dev>
To: Andrew Lunn <andrew@lunn.ch>
Cc: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>,
netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
Michal Simek <michal.simek@amd.com>,
Jakub Kicinski <kuba@kernel.org>,
Russell King <linux@armlinux.org.uk>,
Paolo Abeni <pabeni@redhat.com>,
Eric Dumazet <edumazet@google.com>,
linux-kernel@vger.kernel.org,
"David S . Miller" <davem@davemloft.net>
Subject: Re: [PATCH net-next 3/3] net: xilinx: axienet: Add statistics support
Date: Tue, 11 Jun 2024 11:14:11 -0400 [thread overview]
Message-ID: <abfdacc1-d7fc-45ab-800b-09c14cd41858@linux.dev> (raw)
In-Reply-To: <7c06c9d7-ad11-4acd-8c80-fbeb902da40d@lunn.ch>
On 6/10/24 20:13, Andrew Lunn wrote:
> On Mon, Jun 10, 2024 at 07:10:22PM -0400, Sean Anderson wrote:
>> Add support for reading the statistics counters, if they are enabled.
>> The counters may be 64-bit, but we can't detect this as there's no
>> ability bit for it and the counters are read-only. Therefore, we assume
>> the counters are 32-bits.
>
>> +static void axienet_stats_update(struct axienet_local *lp)
>> +{
>> + enum temac_stat stat;
>> +
>> + lockdep_assert_held(&lp->stats_lock);
>> +
>> + u64_stats_update_begin(&lp->hw_stat_sync);
>> + for (stat = 0; stat < STAT_COUNT; stat++) {
>> + u32 counter = axienet_ior(lp, XAE_STATS_OFFSET + stat * 8);
>
> The * 8 here suggests the counters are spaced so that they could be 64
> bit wide, even when only 32 bits are used.
Correct.
> Does the documentation say anything about the upper 32 bits when the
> counters are only 32 bits? Are they guaranteed to read as zero? I'm
> just wondering if the code should be forward looking and read all 64
> bits?
The registers are documented as being 32-bit, with the upper 32-bits
being registered upon reading the lower 32 bits. The documentation
doesn't say what the upper registers are when the counters are 32 bits.
>> static int __axienet_device_reset(struct axienet_local *lp)
>> {
>> u32 value;
>> int ret;
>>
>> + /* Save statistics counters in case they will be reset */
>> + if (lp->features & XAE_FEATURE_STATS) {
>> + mutex_lock(&lp->stats_lock);
>> + axienet_stats_update(lp);
>> + }
>
> It is a pretty unusual pattern to split a mutex lock/unlock like this
> on an if statement. Maybe just unconditionally hold the mutex? This
> does not appear to be anyway hot path, so the overhead should not
> matter.
OK
--Sean
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Sean Anderson <sean.anderson@linux.dev>
To: Andrew Lunn <andrew@lunn.ch>
Cc: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>,
netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
Michal Simek <michal.simek@amd.com>,
Jakub Kicinski <kuba@kernel.org>,
Russell King <linux@armlinux.org.uk>,
Paolo Abeni <pabeni@redhat.com>,
Eric Dumazet <edumazet@google.com>,
linux-kernel@vger.kernel.org,
"David S . Miller" <davem@davemloft.net>
Subject: Re: [PATCH net-next 3/3] net: xilinx: axienet: Add statistics support
Date: Tue, 11 Jun 2024 11:14:11 -0400 [thread overview]
Message-ID: <abfdacc1-d7fc-45ab-800b-09c14cd41858@linux.dev> (raw)
In-Reply-To: <7c06c9d7-ad11-4acd-8c80-fbeb902da40d@lunn.ch>
On 6/10/24 20:13, Andrew Lunn wrote:
> On Mon, Jun 10, 2024 at 07:10:22PM -0400, Sean Anderson wrote:
>> Add support for reading the statistics counters, if they are enabled.
>> The counters may be 64-bit, but we can't detect this as there's no
>> ability bit for it and the counters are read-only. Therefore, we assume
>> the counters are 32-bits.
>
>> +static void axienet_stats_update(struct axienet_local *lp)
>> +{
>> + enum temac_stat stat;
>> +
>> + lockdep_assert_held(&lp->stats_lock);
>> +
>> + u64_stats_update_begin(&lp->hw_stat_sync);
>> + for (stat = 0; stat < STAT_COUNT; stat++) {
>> + u32 counter = axienet_ior(lp, XAE_STATS_OFFSET + stat * 8);
>
> The * 8 here suggests the counters are spaced so that they could be 64
> bit wide, even when only 32 bits are used.
Correct.
> Does the documentation say anything about the upper 32 bits when the
> counters are only 32 bits? Are they guaranteed to read as zero? I'm
> just wondering if the code should be forward looking and read all 64
> bits?
The registers are documented as being 32-bit, with the upper 32-bits
being registered upon reading the lower 32 bits. The documentation
doesn't say what the upper registers are when the counters are 32 bits.
>> static int __axienet_device_reset(struct axienet_local *lp)
>> {
>> u32 value;
>> int ret;
>>
>> + /* Save statistics counters in case they will be reset */
>> + if (lp->features & XAE_FEATURE_STATS) {
>> + mutex_lock(&lp->stats_lock);
>> + axienet_stats_update(lp);
>> + }
>
> It is a pretty unusual pattern to split a mutex lock/unlock like this
> on an if statement. Maybe just unconditionally hold the mutex? This
> does not appear to be anyway hot path, so the overhead should not
> matter.
OK
--Sean
next prev parent reply other threads:[~2024-06-11 15:14 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-10 23:10 [PATCH net-next 0/3] net: xilinx: axienet: Add statistics support Sean Anderson
2024-06-10 23:10 ` Sean Anderson
2024-06-10 23:10 ` [PATCH net-next 1/3] net: xilinx: axienet: Use NL_SET_ERR_MSG instead of netdev_err Sean Anderson
2024-06-10 23:10 ` Sean Anderson
2024-06-10 23:49 ` Andrew Lunn
2024-06-10 23:49 ` Andrew Lunn
2024-06-11 15:06 ` Sean Anderson
2024-06-11 15:06 ` Sean Anderson
2024-06-10 23:10 ` [PATCH net-next 2/3] net: xilinx: axienet: Report RxRject as rx_dropped Sean Anderson
2024-06-10 23:10 ` Sean Anderson
2024-06-10 23:10 ` [PATCH net-next 3/3] net: xilinx: axienet: Add statistics support Sean Anderson
2024-06-10 23:10 ` Sean Anderson
2024-06-11 0:13 ` Andrew Lunn
2024-06-11 0:13 ` Andrew Lunn
2024-06-11 0:29 ` Andrew Lunn
2024-06-11 0:29 ` Andrew Lunn
2024-06-11 16:43 ` Sean Anderson
2024-06-11 16:43 ` Sean Anderson
2024-06-11 15:14 ` Sean Anderson [this message]
2024-06-11 15:14 ` Sean Anderson
2024-06-11 0:26 ` Andrew Lunn
2024-06-11 0:26 ` Andrew Lunn
2024-06-11 15:36 ` Sean Anderson
2024-06-11 15:36 ` Sean Anderson
2024-06-18 17:03 ` Sean Anderson
2024-06-18 18:19 ` Andrew Lunn
2024-06-14 16:30 ` Simon Horman
2024-06-14 20:54 ` Sean Anderson
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=abfdacc1-d7fc-45ab-800b-09c14cd41858@linux.dev \
--to=sean.anderson@linux.dev \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=michal.simek@amd.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=radhey.shyam.pandey@amd.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.