From: Florian Fainelli <f.fainelli@gmail.com>
To: "Clément Léger" <clement.leger@bootlin.com>,
"Andrew Lunn" <andrew@lunn.ch>,
"Vivien Didelot" <vivien.didelot@gmail.com>,
"Vladimir Oltean" <olteanv@gmail.com>,
"David S . Miller" <davem@davemloft.net>,
"Eric Dumazet" <edumazet@google.com>,
"Jakub Kicinski" <kuba@kernel.org>,
"Paolo Abeni" <pabeni@redhat.com>,
"Rob Herring" <robh+dt@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Geert Uytterhoeven" <geert+renesas@glider.be>,
"Magnus Damm" <magnus.damm@gmail.com>,
"Heiner Kallweit" <hkallweit1@gmail.com>,
"Russell King" <linux@armlinux.org.uk>
Cc: "Thomas Petazzoni" <thomas.petazzoni@bootlin.com>,
"Herve Codina" <herve.codina@bootlin.com>,
"Miquèl Raynal" <miquel.raynal@bootlin.com>,
"Milan Stevanovic" <milan.stevanovic@se.com>,
"Jimmy Lalande" <jimmy.lalande@se.com>,
"Pascal Eberhard" <pascal.eberhard@se.com>,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
linux-renesas-soc@vger.kernel.org, netdev@vger.kernel.org
Subject: Re: [PATCH net-next v4 07/12] net: dsa: rzn1-a5psw: add statistics support
Date: Tue, 10 May 2022 09:32:53 -0700 [thread overview]
Message-ID: <e31809b6-6f57-111b-3e01-76bfa69f9796@gmail.com> (raw)
In-Reply-To: <20220509131900.7840-8-clement.leger@bootlin.com>
[-- Attachment #1: Type: text/plain, Size: 1419 bytes --]
On 5/9/22 06:18, Clément Léger wrote:
> Add statistics support to the rzn1-a5psw driver by implementing the
> following dsa_switch_ops callbacks:
> - get_sset_count()
> - get_strings()
> - get_ethtool_stats()
> - get_eth_mac_stats()
> - get_eth_ctrl_stats()
> - get_rmon_stats()
>
> Signed-off-by: Clément Léger <clement.leger@bootlin.com>
> ---
> drivers/net/dsa/rzn1_a5psw.c | 178 +++++++++++++++++++++++++++++++++++
> drivers/net/dsa/rzn1_a5psw.h | 46 ++++++++-
> 2 files changed, 223 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/dsa/rzn1_a5psw.c b/drivers/net/dsa/rzn1_a5psw.c
> index 1e2fac80f3e0..46ba25672593 100644
> --- a/drivers/net/dsa/rzn1_a5psw.c
> +++ b/drivers/net/dsa/rzn1_a5psw.c
> @@ -17,6 +17,61 @@
>
> #include "rzn1_a5psw.h"
>
> +struct a5psw_stats {
> + u16 offset;
> + const char name[ETH_GSTRING_LEN];
> +};
> +
> +#define STAT_DESC(_offset, _name) {.offset = _offset, .name = _name}
You can build a more compact representation as long as you keep the
offset constant and the name in sync, the attached patch and leverage
the __stringify() macro to construct the name field:
-#define STAT_DESC(_offset, _name) {.offset = _offset, .name = _name}
+#define STAT_DESC(_offset) { \
+ .offset = A5PSW_##_offset, \
+ .name = __stringify(_offset), \
+}
The attached patch does the conversion if you want to fixup into your
commit.
--
Florian
[-- Attachment #2: rzn1_a5psw.c.diff --]
[-- Type: text/x-patch, Size: 4322 bytes --]
diff --git a/drivers/net/dsa/rzn1_a5psw.c b/drivers/net/dsa/rzn1_a5psw.c
index ef9d8ef961b5..4e52898187a5 100644
--- a/drivers/net/dsa/rzn1_a5psw.c
+++ b/drivers/net/dsa/rzn1_a5psw.c
@@ -22,54 +22,50 @@ struct a5psw_stats {
const char name[ETH_GSTRING_LEN];
};
-#define STAT_DESC(_offset, _name) {.offset = _offset, .name = _name}
+#define STAT_DESC(_offset) { \
+ .offset = A5PSW_##_offset, \
+ .name = __stringify(_offset), \
+}
static const struct a5psw_stats a5psw_stats[] = {
- STAT_DESC(A5PSW_aFramesTransmittedOK, "aFrameTransmittedOK"),
- STAT_DESC(A5PSW_aFramesReceivedOK, "aFrameReceivedOK"),
- STAT_DESC(A5PSW_aFrameCheckSequenceErrors, "aFrameCheckSequenceErrors"),
- STAT_DESC(A5PSW_aAlignmentErrors, "aAlignmentErrors"),
- STAT_DESC(A5PSW_aOctetsTransmittedOK, "aOctetsTransmittedOK"),
- STAT_DESC(A5PSW_aOctetsReceivedOK, "aOctetsReceivedOK"),
- STAT_DESC(A5PSW_aTxPAUSEMACCtrlFrames, "aTxPAUSEMACCtrlFrames"),
- STAT_DESC(A5PSW_aRxPAUSEMACCtrlFrames, "aRxPAUSEMACCtrlFrames"),
- STAT_DESC(A5PSW_ifInErrors, "ifInErrors"),
- STAT_DESC(A5PSW_ifOutErrors, "ifOutErrors"),
- STAT_DESC(A5PSW_ifInUcastPkts, "ifInUcastPkts"),
- STAT_DESC(A5PSW_ifInMulticastPkts, "ifInMulticastPkts"),
- STAT_DESC(A5PSW_ifInBroadcastPkts, "ifInBroadcastPkts"),
- STAT_DESC(A5PSW_ifOutDiscards, "ifOutDiscards"),
- STAT_DESC(A5PSW_ifOutUcastPkts, "ifOutUcastPkts"),
- STAT_DESC(A5PSW_ifOutMulticastPkts, "ifOutMulticastPkts"),
- STAT_DESC(A5PSW_ifOutBroadcastPkts, "ifOutBroadcastPkts"),
- STAT_DESC(A5PSW_etherStatsDropEvents, "etherStatsDropEvents"),
- STAT_DESC(A5PSW_etherStatsOctets, "etherStatsOctets"),
- STAT_DESC(A5PSW_etherStatsPkts, "etherStatsPkts"),
- STAT_DESC(A5PSW_etherStatsUndersizePkts, "etherStatsUndersizePkts"),
- STAT_DESC(A5PSW_etherStatsOversizePkts, "etherStatsOversizePkts"),
- STAT_DESC(A5PSW_etherStatsPkts64Octets, "etherStatsPkts64Octets"),
- STAT_DESC(A5PSW_etherStatsPkts65to127Octets,
- "etherStatsPkts65to127Octets"),
- STAT_DESC(A5PSW_etherStatsPkts128to255Octets,
- "etherStatsPkts128to255Octets"),
- STAT_DESC(A5PSW_etherStatsPkts256to511Octets,
- "etherStatsPkts256to511Octets"),
- STAT_DESC(A5PSW_etherStatsPkts512to1023Octets,
- "etherStatsPkts512to1023Octets"),
- STAT_DESC(A5PSW_etherStatsPkts1024to1518Octets,
- "etherStatsPkts1024to1518Octets"),
- STAT_DESC(A5PSW_etherStatsPkts1519toXOctets,
- "etherStatsPkts1519toXOctets"),
- STAT_DESC(A5PSW_etherStatsJabbers, "etherStatsJabbers"),
- STAT_DESC(A5PSW_etherStatsFragments, "etherStatsFragments"),
- STAT_DESC(A5PSW_VLANReceived, "VLANReceived"),
- STAT_DESC(A5PSW_VLANTransmitted, "VLANTransmitted"),
- STAT_DESC(A5PSW_aDeferred, "aDeferred"),
- STAT_DESC(A5PSW_aMultipleCollisions, "aMultipleCollisions"),
- STAT_DESC(A5PSW_aSingleCollisions, "aSingleCollisions"),
- STAT_DESC(A5PSW_aLateCollisions, "aLateCollisions"),
- STAT_DESC(A5PSW_aExcessiveCollisions, "aExcessiveCollisions"),
- STAT_DESC(A5PSW_aCarrierSenseErrors, "aCarrierSenseErrors"),
+ STAT_DESC(aFramesTransmittedOK),
+ STAT_DESC(aFramesReceivedOK),
+ STAT_DESC(aFrameCheckSequenceErrors),
+ STAT_DESC(aAlignmentErrors),
+ STAT_DESC(aOctetsTransmittedOK),
+ STAT_DESC(aOctetsReceivedOK),
+ STAT_DESC(aTxPAUSEMACCtrlFrames),
+ STAT_DESC(aRxPAUSEMACCtrlFrames),
+ STAT_DESC(ifInErrors),
+ STAT_DESC(ifOutErrors),
+ STAT_DESC(ifInUcastPkts),
+ STAT_DESC(ifInMulticastPkts),
+ STAT_DESC(ifInBroadcastPkts),
+ STAT_DESC(ifOutDiscards),
+ STAT_DESC(ifOutUcastPkts),
+ STAT_DESC(ifOutMulticastPkts),
+ STAT_DESC(ifOutBroadcastPkts),
+ STAT_DESC(etherStatsDropEvents),
+ STAT_DESC(etherStatsOctets),
+ STAT_DESC(etherStatsPkts),
+ STAT_DESC(etherStatsUndersizePkts),
+ STAT_DESC(etherStatsOversizePkts),
+ STAT_DESC(etherStatsPkts64Octets),
+ STAT_DESC(etherStatsPkts65to127Octets),
+ STAT_DESC(etherStatsPkts128to255Octets),
+ STAT_DESC(etherStatsPkts256to511Octets),
+ STAT_DESC(etherStatsPkts1024to1518Octets),
+ STAT_DESC(etherStatsPkts1519toXOctets),
+ STAT_DESC(etherStatsJabbers),
+ STAT_DESC(etherStatsFragments),
+ STAT_DESC(VLANReceived),
+ STAT_DESC(VLANTransmitted),
+ STAT_DESC(aDeferred),
+ STAT_DESC(aMultipleCollisions),
+ STAT_DESC(aSingleCollisions),
+ STAT_DESC(aLateCollisions),
+ STAT_DESC(aExcessiveCollisions),
+ STAT_DESC(aCarrierSenseErrors),
};
static void a5psw_reg_writel(struct a5psw *a5psw, int offset, u32 value)
next prev parent reply other threads:[~2022-05-10 16:33 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-09 13:18 [PATCH net-next v4 00/12] add support for Renesas RZ/N1 ethernet subsystem devices Clément Léger
2022-05-09 13:18 ` [PATCH net-next v4 01/12] net: dsa: add support for ethtool get_rmon_stats() Clément Léger
2022-05-09 13:18 ` [PATCH net-next v4 02/12] net: dsa: add Renesas RZ/N1 switch tag driver Clément Léger
2022-05-09 15:52 ` Vladimir Oltean
2022-05-10 16:20 ` Florian Fainelli
2022-05-09 13:18 ` [PATCH net-next v4 03/12] dt-bindings: net: pcs: add bindings for Renesas RZ/N1 MII converter Clément Léger
2022-05-10 16:21 ` Florian Fainelli
2022-05-11 15:20 ` Rob Herring
2022-05-09 13:18 ` [PATCH net-next v4 04/12] net: pcs: add Renesas MII converter driver Clément Léger
2022-05-09 20:20 ` Russell King (Oracle)
2022-05-10 7:24 ` Clément Léger
2022-05-09 13:18 ` [PATCH net-next v4 05/12] dt-bindings: net: dsa: add bindings for Renesas RZ/N1 Advanced 5 port switch Clément Léger
2022-05-11 15:22 ` Rob Herring
2022-05-11 15:33 ` Vladimir Oltean
2022-05-18 1:59 ` Rob Herring
2022-05-18 12:05 ` Vladimir Oltean
2022-05-18 12:41 ` Clément Léger
2022-05-18 18:53 ` Rob Herring
2022-05-09 13:18 ` [PATCH net-next v4 06/12] net: dsa: rzn1-a5psw: add Renesas RZ/N1 advanced 5 port switch driver Clément Léger
2022-05-09 16:08 ` Vladimir Oltean
2022-05-10 8:34 ` Clément Léger
2022-05-11 9:36 ` Vladimir Oltean
2022-05-12 8:47 ` Clément Léger
2022-05-19 14:03 ` Clément Léger
2022-05-09 13:18 ` [PATCH net-next v4 07/12] net: dsa: rzn1-a5psw: add statistics support Clément Léger
2022-05-10 16:32 ` Florian Fainelli [this message]
2022-05-11 7:06 ` Clément Léger
2022-05-09 13:18 ` [PATCH net-next v4 08/12] net: dsa: rzn1-a5psw: add FDB support Clément Léger
2022-05-09 13:18 ` [PATCH net-next v4 09/12] ARM: dts: r9a06g032: describe MII converter Clément Léger
2022-05-09 13:18 ` [PATCH net-next v4 10/12] ARM: dts: r9a06g032: describe GMAC2 Clément Léger
2022-05-09 13:18 ` [PATCH net-next v4 11/12] ARM: dts: r9a06g032: describe switch Clément Léger
2022-05-09 13:19 ` [PATCH net-next v4 12/12] MAINTAINERS: add Renesas RZ/N1 switch related driver entry Clément Léger
2022-05-10 16:22 ` Florian Fainelli
2022-05-10 16:30 ` [PATCH net-next v4 00/12] add support for Renesas RZ/N1 ethernet subsystem devices Florian Fainelli
2022-05-11 7:08 ` Clément Léger
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=e31809b6-6f57-111b-3e01-76bfa69f9796@gmail.com \
--to=f.fainelli@gmail.com \
--cc=andrew@lunn.ch \
--cc=clement.leger@bootlin.com \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=edumazet@google.com \
--cc=geert+renesas@glider.be \
--cc=herve.codina@bootlin.com \
--cc=hkallweit1@gmail.com \
--cc=jimmy.lalande@se.com \
--cc=krzk+dt@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=magnus.damm@gmail.com \
--cc=milan.stevanovic@se.com \
--cc=miquel.raynal@bootlin.com \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=pabeni@redhat.com \
--cc=pascal.eberhard@se.com \
--cc=robh+dt@kernel.org \
--cc=thomas.petazzoni@bootlin.com \
--cc=vivien.didelot@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome