From: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
To: Daniel Golle <daniel@makrotopia.org>
Cc: Andrew Lunn <andrew@lunn.ch>,
Heiner Kallweit <hkallweit1@gmail.com>,
Russell King <linux@armlinux.org.uk>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH net 1/3] net: phy: realtek: clear 1000Base-T lpa if link is down
Date: Thu, 16 Jan 2025 15:00:53 +0100 [thread overview]
Message-ID: <Z4kRFVs6ktqubOJd@mev-dev.igk.intel.com> (raw)
In-Reply-To: <67e38eee4c46b921938fb33f5bc86c8979b9aa33.1736951652.git.daniel@makrotopia.org>
On Wed, Jan 15, 2025 at 02:43:35PM +0000, Daniel Golle wrote:
> Only read 1000Base-T link partner advertisement if autonegotiation has
> completed and otherwise 1000Base-T link partner advertisement bits.
>
> This fixes bogus 1000Base-T link partner advertisement after link goes
> down (eg. by disconnecting the wire).
> Fixes: 5cb409b3960e ("net: phy: realtek: clear 1000Base-T link partner advertisement")
> Signed-off-by: Daniel Golle <daniel@makrotopia.org>
> ---
> drivers/net/phy/realtek.c | 19 ++++++++-----------
> 1 file changed, 8 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/net/phy/realtek.c b/drivers/net/phy/realtek.c
> index f65d7f1f348e..26b324ab0f90 100644
> --- a/drivers/net/phy/realtek.c
> +++ b/drivers/net/phy/realtek.c
> @@ -1023,23 +1023,20 @@ static int rtl822x_c45_read_status(struct phy_device *phydev)
> {
> int ret, val;
>
> - ret = genphy_c45_read_status(phydev);
> - if (ret < 0)
> - return ret;
> -
> - if (phydev->autoneg == AUTONEG_DISABLE ||
> - !genphy_c45_aneg_done(phydev))
> - mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising, 0);
> -
> /* Vendor register as C45 has no standardized support for 1000BaseT */
> - if (phydev->autoneg == AUTONEG_ENABLE) {
> + if (phydev->autoneg == AUTONEG_ENABLE && genphy_c45_aneg_done(phydev)) {
> val = phy_read_mmd(phydev, MDIO_MMD_VEND2,
> RTL822X_VND2_GANLPAR);
> if (val < 0)
> return val;
> -
> - mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising, val);
> + } else {
> + val = 0;
> }
> + mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising, val);
> +
> + ret = genphy_c45_read_status(phydev);
> + if (ret < 0)
> + return ret;
>
> if (!phydev->link)
> return 0;
Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
> --
> 2.47.1
next prev parent reply other threads:[~2025-01-16 14:04 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-15 14:43 [PATCH net 0/3] net: phy: realtek: fix status when link is down Daniel Golle
2025-01-15 14:43 ` [PATCH net 1/3] net: phy: realtek: clear 1000Base-T lpa if " Daniel Golle
2025-01-16 14:00 ` Michal Swiatkowski [this message]
2025-01-15 14:43 ` [PATCH net 2/3] net: phy: realtek: clear master_slave_state " Daniel Golle
2025-01-16 14:05 ` Michal Swiatkowski
2025-01-15 14:45 ` [PATCH net 3/3] net: phy: realtek: always clear NBase-T lpa Daniel Golle
2025-01-16 14:06 ` Michal Swiatkowski
2025-01-15 17:19 ` [PATCH net 0/3] net: phy: realtek: fix status when link is down Heiner Kallweit
2025-01-15 18:06 ` Jakub Kicinski
2025-01-17 12:10 ` patchwork-bot+netdevbpf
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=Z4kRFVs6ktqubOJd@mev-dev.igk.intel.com \
--to=michal.swiatkowski@linux.intel.com \
--cc=andrew@lunn.ch \
--cc=daniel@makrotopia.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=hkallweit1@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.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).