[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250305141938.319282-7-maxime.chevallier@bootlin.com>
Date: Wed, 5 Mar 2025 15:19:36 +0100
From: Maxime Chevallier <maxime.chevallier@...tlin.com>
To: davem@...emloft.net,
Andrew Lunn <andrew@...n.ch>,
Jakub Kicinski <kuba@...nel.org>,
Eric Dumazet <edumazet@...gle.com>,
Paolo Abeni <pabeni@...hat.com>,
Heiner Kallweit <hkallweit1@...il.com>
Cc: Maxime Chevallier <maxime.chevallier@...tlin.com>,
netdev@...r.kernel.org,
linux-kernel@...r.kernel.org,
thomas.petazzoni@...tlin.com,
linux-arm-kernel@...ts.infradead.org,
Christophe Leroy <christophe.leroy@...roup.eu>,
Herve Codina <herve.codina@...tlin.com>,
Florian Fainelli <f.fainelli@...il.com>,
Russell King <linux@...linux.org.uk>,
Vladimir Oltean <vladimir.oltean@....com>,
Köry Maincent <kory.maincent@...tlin.com>,
Oleksij Rempel <o.rempel@...gutronix.de>,
Simon Horman <horms@...nel.org>,
Romain Gantois <romain.gantois@...tlin.com>,
Piergiorgio Beruto <piergiorgio.beruto@...il.com>
Subject: [PATCH net-next 6/7] net: ethtool: plca: Use per-PHY DUMP operations
Leverage the per-phy ethnl DUMP helpers in case we have more that one
PLCA-able PHY on the link.
This is done for both PLCA status and PLCA config.
Signed-off-by: Maxime Chevallier <maxime.chevallier@...tlin.com>
---
net/ethtool/plca.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/net/ethtool/plca.c b/net/ethtool/plca.c
index e1f7820a6158..2148ff607561 100644
--- a/net/ethtool/plca.c
+++ b/net/ethtool/plca.c
@@ -191,6 +191,12 @@ const struct ethnl_request_ops ethnl_plca_cfg_request_ops = {
.set = ethnl_set_plca,
.set_ntf_cmd = ETHTOOL_MSG_PLCA_NTF,
+
+ .dump_start = ethnl_dump_start_perphy,
+ .dump_one_dev = ethnl_dump_one_dev_perphy,
+ .dump_done = ethnl_dump_done_perphy,
+
+ .allow_pernetdev_dump = true,
};
// PLCA get status message -------------------------------------------------- //
@@ -268,4 +274,10 @@ const struct ethnl_request_ops ethnl_plca_status_request_ops = {
.prepare_data = plca_get_status_prepare_data,
.reply_size = plca_get_status_reply_size,
.fill_reply = plca_get_status_fill_reply,
+
+ .dump_start = ethnl_dump_start_perphy,
+ .dump_one_dev = ethnl_dump_one_dev_perphy,
+ .dump_done = ethnl_dump_done_perphy,
+
+ .allow_pernetdev_dump = true,
};
--
2.48.1
Powered by blists - more mailing lists