From: shayderrr <darknessshayder@gmail.com>
To: gregkh@linuxfoundation.org
Cc: linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org,
Pranav Bajjuri <darknessshayder@gmail.com>
Subject: [PATCH] net: octeon: fix carrier state, null guard, and modernize phy ioctl
Date: Sun, 17 May 2026 09:19:55 -0500 [thread overview]
Message-ID: <20260517141955.79666-1-darknessshayder@gmail.com> (raw)
From: Pranav Bajjuri <darknessshayder@gmail.com>
Add netif_carrier_off() to cvm_oct_common_stop(), guard
cvm_oct_adjust_link() against null phydev, replace open-coded
ioctl checks with phy_do_ioctl_running(), and zero priv->link_info
on stop alongside last_link.
Signed-off-by: Pranav Bajjuri <darknessshayder@gmail.com>
---
drivers/staging/octeon/ethernet-mdio.c | 64 +++++++++-----------------
1 file changed, 23 insertions(+), 41 deletions(-)
diff --git a/drivers/staging/octeon/ethernet-mdio.c b/drivers/staging/octeon/ethernet-mdio.c
index 211423059e30..4b5cac324eff 100644
--- a/drivers/staging/octeon/ethernet-mdio.c
+++ b/drivers/staging/octeon/ethernet-mdio.c
@@ -17,6 +17,8 @@
#include "ethernet-mdio.h"
#include "ethernet-util.h"
+#define CVM_OCT_PHY_FLAGS 0
+
static void cvm_oct_get_drvinfo(struct net_device *dev,
struct ethtool_drvinfo *info)
{
@@ -36,30 +38,16 @@ static int cvm_oct_nway_reset(struct net_device *dev)
}
const struct ethtool_ops cvm_oct_ethtool_ops = {
- .get_drvinfo = cvm_oct_get_drvinfo,
- .nway_reset = cvm_oct_nway_reset,
- .get_link = ethtool_op_get_link,
- .get_link_ksettings = phy_ethtool_get_link_ksettings,
- .set_link_ksettings = phy_ethtool_set_link_ksettings,
+ .get_drvinfo = cvm_oct_get_drvinfo,
+ .nway_reset = cvm_oct_nway_reset,
+ .get_link = ethtool_op_get_link,
+ .get_link_ksettings = phy_ethtool_get_link_ksettings,
+ .set_link_ksettings = phy_ethtool_set_link_ksettings,
};
-/**
- * cvm_oct_ioctl - IOCTL support for PHY control
- * @dev: Device to change
- * @rq: the request
- * @cmd: the command
- *
- * Returns Zero on success
- */
int cvm_oct_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
{
- if (!netif_running(dev))
- return -EINVAL;
-
- if (!dev->phydev)
- return -EINVAL;
-
- return phy_mii_ioctl(dev->phydev, rq, cmd);
+ return phy_do_ioctl_running(dev, rq, cmd);
}
void cvm_oct_note_carrier(struct octeon_ethernet *priv,
@@ -81,15 +69,15 @@ void cvm_oct_adjust_link(struct net_device *dev)
struct octeon_ethernet *priv = netdev_priv(dev);
union cvmx_helper_link_info link_info;
+ if (WARN_ON(!dev->phydev))
+ return;
+
link_info.u64 = 0;
link_info.s.link_up = dev->phydev->link ? 1 : 0;
- link_info.s.full_duplex = dev->phydev->duplex ? 1 : 0;
+ link_info.s.full_duplex = dev->phydev->duplex ? 1 : 0;
link_info.s.speed = dev->phydev->speed;
priv->link_info = link_info.u64;
- /*
- * The polling task need to know about link status changes.
- */
if (priv->poll)
priv->poll(dev);
@@ -100,13 +88,13 @@ void cvm_oct_adjust_link(struct net_device *dev)
}
}
-int cvm_oct_common_stop(struct net_device *dev)
+void cvm_oct_common_stop(struct net_device *dev)
{
struct octeon_ethernet *priv = netdev_priv(dev);
int interface = INTERFACE(priv->port);
+ int index = INDEX(priv->port);
union cvmx_helper_link_info link_info;
union cvmx_gmxx_prtx_cfg gmx_cfg;
- int index = INDEX(priv->port);
gmx_cfg.u64 = cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index, interface));
gmx_cfg.s.en = 0;
@@ -114,26 +102,21 @@ int cvm_oct_common_stop(struct net_device *dev)
priv->poll = NULL;
+ netif_carrier_off(dev);
+
if (dev->phydev)
phy_disconnect(dev->phydev);
if (priv->last_link) {
- link_info.u64 = 0;
- priv->last_link = 0;
+ link_info.u64 = 0;
+ priv->link_info = 0;
+ priv->last_link = 0;
cvmx_helper_link_set(priv->port, link_info);
cvm_oct_note_carrier(priv, link_info);
}
- return 0;
}
-/**
- * cvm_oct_phy_setup_device - setup the PHY
- *
- * @dev: Device to setup
- *
- * Returns Zero on success, negative on failure
- */
int cvm_oct_phy_setup_device(struct net_device *dev)
{
struct octeon_ethernet *priv = netdev_priv(dev);
@@ -149,8 +132,8 @@ int cvm_oct_phy_setup_device(struct net_device *dev)
if (!phy_node)
goto no_phy;
- phydev = of_phy_connect(dev, phy_node, cvm_oct_adjust_link, 0,
- priv->phy_mode);
+ phydev = of_phy_connect(dev, phy_node, cvm_oct_adjust_link,
+ CVM_OCT_PHY_FLAGS, priv->phy_mode);
of_node_put(phy_node);
if (!phydev)
@@ -160,10 +143,9 @@ int cvm_oct_phy_setup_device(struct net_device *dev)
phy_start(phydev);
return 0;
+
no_phy:
- /* If there is no phy, assume a direct MAC connection and that
- * the link is up.
- */
netif_carrier_on(dev);
return 0;
}
+
--
2.50.1 (Apple Git-155)
next reply other threads:[~2026-05-17 14:20 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-17 14:19 shayderrr [this message]
2026-05-17 14:43 ` [PATCH] net: octeon: fix carrier state, null guard, and modernize phy ioctl Greg KH
[not found] ` <CANy=CjfYXx+S0o7R60TDkm6ZLifsJ9P4nDoy9JPKvWB0NpgBBg@mail.gmail.com>
2026-05-18 5:12 ` Greg KH
2026-05-17 19:00 ` kernel test robot
2026-05-17 21:45 ` kernel test robot
2026-05-18 5:54 ` Dan Carpenter
2026-05-18 5:55 ` Dan Carpenter
2026-05-18 5:59 ` Greg KH
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=20260517141955.79666-1-darknessshayder@gmail.com \
--to=darknessshayder@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
/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