From: Paolo Abeni <pabeni@redhat.com>
To: lawson.fidelio@gmail.com
Cc: woojung.huh@microchip.com, UNGLinuxDriver@microchip.com,
andrew@lunn.ch, olteanv@gmail.com, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
marex@denx.de, maxime.chevallier@bootlin.com, horms@kernel.org,
hkallweit1@gmail.com, linux@armlinux.org.uk,
Tristram.Ha@microchip.com, Woojung.Huh@microchip.com,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
nb@tipi-net.de, fidelio.lawson@exotec.com, marex@nabladev.com
Subject: Re: [PATCH net-next v9 3/3] net: phy: micrel: expose KSZ87xx low-loss cable tunables
Date: Thu, 4 Jun 2026 13:41:33 +0200 [thread overview]
Message-ID: <20260604114133.170770-1-pabeni@redhat.com> (raw)
In-Reply-To: <20260601-ksz87xx_errata_low_loss_connections-v9-3-fdbbb15592cb@exotec.com>
From: AI Reviewer <ai@example.com>
This is an AI-generated review of your patch. The human sending this
email has considered the AI review valid, or at least plausible.
Full review at: https://sashiko.dev/
---
net: phy: micrel: expose KSZ87xx low-loss cable tunables
This commit adds support for the KSZ87xx low-loss cable PHY tunables in the
Micrel PHY driver. It implements the get_tunable and set_tunable callbacks
to control receiver behavior. These callbacks are forwarded via standard
phy_read() and phy_write() operations.
> diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
> index e211a523c2584..bb8f3054e2574 100644
> --- a/drivers/net/phy/micrel.c
> +++ b/drivers/net/phy/micrel.c
[ ... ]
> @@ -6961,6 +7013,8 @@ static struct phy_driver ksphy_driver[] = {
> /* PHY_BASIC_FEATURES */
> .config_init = kszphy_config_init,
> .match_phy_device = ksz8795_match_phy_device,
> + .get_tunable = ksz8795_get_tunable,
> + .set_tunable = ksz8795_set_tunable,
[Severity: High]
This isn't a bug introduced by this patch, but while reviewing the addition
of these callbacks, I noticed a pre-existing issue in the ethtool core.
In net/ethtool/ioctl.c:set_phy_tunable(), the capability check wrongly examines
phydev->drv->get_tunable instead of set_tunable:
phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable;
if (!phy_drv_tunable && !dev->ethtool_ops->set_phy_tunable)
return -EOPNOTSUPP;
...
if (phy_drv_tunable) {
mutex_lock(&phydev->lock);
ret = phydev->drv->set_tunable(phydev, &tuna, data);
Since the capability check looks at get_tunable but unconditionally calls
set_tunable, could this lead to a NULL pointer dereference if a PHY driver
were to implement only read-only tunables by providing just get_tunable?
> .suspend = genphy_suspend,
> .resume = genphy_resume,
> }, {
--
This is an AI-generated review.
next prev parent reply other threads:[~2026-06-04 11:45 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-01 15:19 [PATCH net-next v9 0/3] ksz87xx: add support for low-loss cable equalizer errata Fidelio Lawson
2026-06-01 15:19 ` [PATCH net-next v9 1/3] net: dsa: microchip: implement KSZ87xx Module 3 low-loss cable errata Fidelio Lawson
2026-06-01 15:19 ` [PATCH net-next v9 2/3] net: ethtool: add KSZ87xx low-loss cable PHY tunables Fidelio Lawson
2026-06-04 11:41 ` Paolo Abeni
2026-06-04 12:11 ` Andrew Lunn
2026-06-05 2:35 ` Jakub Kicinski
2026-06-05 3:16 ` Marek Vasut
2026-06-01 15:19 ` [PATCH net-next v9 3/3] net: phy: micrel: expose KSZ87xx low-loss cable tunables Fidelio Lawson
2026-06-04 11:41 ` Paolo Abeni [this message]
2026-06-04 12:15 ` Andrew Lunn
2026-06-01 15:43 ` [PATCH net-next v9 0/3] ksz87xx: add support for low-loss cable equalizer errata Nicolai Buchwitz
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=20260604114133.170770-1-pabeni@redhat.com \
--to=pabeni@redhat.com \
--cc=Tristram.Ha@microchip.com \
--cc=UNGLinuxDriver@microchip.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fidelio.lawson@exotec.com \
--cc=hkallweit1@gmail.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=lawson.fidelio@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=marex@denx.de \
--cc=marex@nabladev.com \
--cc=maxime.chevallier@bootlin.com \
--cc=nb@tipi-net.de \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=woojung.huh@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