linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Jakub Kicinski <kuba@kernel.org>
To: Steen Hegelund <steen.hegelund@microchip.com>
Cc: "David S. Miller" <davem@davemloft.net>,
	Andrew Lunn <andrew@lunn.ch>,
	Russell King <linux@armlinux.org.uk>,
	"Microchip Linux Driver Support" <UNGLinuxDriver@microchip.com>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	Madalin Bucur <madalin.bucur@oss.nxp.com>,
	Mark Einon <mark.einon@gmail.com>,
	Masahiro Yamada <masahiroy@kernel.org>,
	Arnd Bergmann <arnd@arndb.de>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	"Simon Horman" <simon.horman@netronome.com>,
	<netdev@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	Bjarni Jonasson <bjarni.jonasson@microchip.com>,
	Lars Povlsen <lars.povlsen@microchip.com>
Subject: Re: [PATCH net-next 09/10] net: sparx5: add ethtool configuration and statistics support
Date: Fri, 16 Apr 2021 14:26:13 -0700	[thread overview]
Message-ID: <20210416142613.7307cbc0@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> (raw)
In-Reply-To: <20210416131657.3151464-10-steen.hegelund@microchip.com>

On Fri, 16 Apr 2021 15:16:56 +0200 Steen Hegelund wrote:
> +	"rx_in_bytes",
> +	"rx_symbol_err",
> +	"rx_pause",
> +	"rx_unsup_opcode",
> +	"rx_ok_bytes",
> +	"rx_bad_bytes",
> +	"rx_unicast",
> +	"rx_multicast",
> +	"rx_broadcast",
> +	"rx_crc_err",
> +	"rx_undersize",
> +	"rx_fragments",
> +	"rx_inrangelen_err",
> +	"rx_outofrangelen_err",
> +	"rx_oversize",
> +	"rx_jabbers",
> +	"rx_size64",
> +	"rx_size65_127",
> +	"rx_size128_255",
> +	"rx_size256_511",
> +	"rx_size512_1023",
> +	"rx_size1024_1518",
> +	"rx_size1519_max",
> +	"pmac_rx_symbol_err",
> +	"pmac_rx_pause",
> +	"pmac_rx_unsup_opcode",
> +	"pmac_rx_ok_bytes",
> +	"pmac_rx_bad_bytes",
> +	"pmac_rx_unicast",
> +	"pmac_rx_multicast",
> +	"pmac_rx_broadcast",
> +	"pmac_rx_crc_err",
> +	"pmac_rx_undersize",
> +	"pmac_rx_fragments",
> +	"pmac_rx_inrangelen_err",
> +	"pmac_rx_outofrangelen_err",
> +	"pmac_rx_oversize",
> +	"pmac_rx_jabbers",
> +	"pmac_rx_size64",
> +	"pmac_rx_size65_127",
> +	"pmac_rx_size128_255",
> +	"pmac_rx_size256_511",
> +	"pmac_rx_size512_1023",
> +	"pmac_rx_size1024_1518",
> +	"pmac_rx_size1519_max",

> +	"rx_local_drop",
> +	"rx_port_policer_drop",
> +	"tx_out_bytes",
> +	"tx_pause",
> +	"tx_ok_bytes",
> +	"tx_unicast",
> +	"tx_multicast",
> +	"tx_broadcast",
> +	"tx_size64",
> +	"tx_size65_127",
> +	"tx_size128_255",
> +	"tx_size256_511",
> +	"tx_size512_1023",
> +	"tx_size1024_1518",
> +	"tx_size1519_max",
> +	"tx_multi_coll",
> +	"tx_late_coll",
> +	"tx_xcoll",
> +	"tx_defer",
> +	"tx_xdefer",
> +	"tx_backoff1",
> +	"pmac_tx_pause",
> +	"pmac_tx_ok_bytes",
> +	"pmac_tx_unicast",
> +	"pmac_tx_multicast",
> +	"pmac_tx_broadcast",
> +	"pmac_tx_size64",
> +	"pmac_tx_size65_127",
> +	"pmac_tx_size128_255",
> +	"pmac_tx_size256_511",
> +	"pmac_tx_size512_1023",
> +	"pmac_tx_size1024_1518",
> +	"pmac_tx_size1519_max",

Please see 

https://patchwork.kernel.org/project/netdevbpf/list/?series=468795

(hopefully to be merged by the end of the week) and earlier patches for
pause and FEC stats. Anything that has a standardized interface is off
limits for the random ethtool -S grab bag.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2021-04-16 21:28 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-16 13:16 [PATCH net-next 00/10] Adding the Sparx5 Switch Driver Steen Hegelund
2021-04-16 13:16 ` [PATCH net-next 01/10] dt-bindings: net: sparx5: Add sparx5-switch bindings Steen Hegelund
2021-04-21 22:44   ` Rob Herring
2021-04-16 13:16 ` [PATCH net-next 03/10] net: sparx5: add hostmode with phylink support Steen Hegelund
2021-04-16 21:22   ` Jakub Kicinski
2021-04-20 12:54     ` Steen.Hegelund
2021-04-16 13:16 ` [PATCH net-next 04/10] net: sparx5: add port module support Steen Hegelund
2021-04-16 13:16 ` [PATCH net-next 05/10] net: sparx5: add mactable support Steen Hegelund
2021-04-16 13:16 ` [PATCH net-next 06/10] net: sparx5: add vlan support Steen Hegelund
2021-04-16 13:16 ` [PATCH net-next 07/10] net: sparx5: add switching support Steen Hegelund
2021-04-16 13:16 ` [PATCH net-next 08/10] net: sparx5: add calendar bandwidth allocation support Steen Hegelund
2021-04-16 13:16 ` [PATCH net-next 09/10] net: sparx5: add ethtool configuration and statistics support Steen Hegelund
2021-04-16 21:26   ` Jakub Kicinski [this message]
2021-04-20 12:54     ` Steen.Hegelund
2021-04-16 13:16 ` [PATCH net-next 10/10] arm64: dts: sparx5: Add the Sparx5 switch node Steen Hegelund

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=20210416142613.7307cbc0@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com \
    --to=kuba@kernel.org \
    --cc=UNGLinuxDriver@microchip.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=andrew@lunn.ch \
    --cc=arnd@arndb.de \
    --cc=bjarni.jonasson@microchip.com \
    --cc=davem@davemloft.net \
    --cc=lars.povlsen@microchip.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=madalin.bucur@oss.nxp.com \
    --cc=mark.einon@gmail.com \
    --cc=masahiroy@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=simon.horman@netronome.com \
    --cc=steen.hegelund@microchip.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;
as well as URLs for NNTP newsgroup(s).