From: "Russell King (Oracle)" <linux@armlinux.org.uk>
To: Horatiu Vultur <horatiu.vultur@microchip.com>
Cc: davem@davemloft.net, kuba@kernel.org, robh+dt@kernel.org,
andrew@lunn.ch, f.fainelli@gmail.com,
alexandre.belloni@bootlin.com, vladimir.oltean@nxp.com,
UNGLinuxDriver@microchip.com, netdev@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-phy@lists.infradead.org, linux-pm@vger.kernel.org
Subject: Re: [RFC PATCH net-next 10/12] net: lan966x: add port module support
Date: Mon, 20 Sep 2021 14:54:26 +0100 [thread overview]
Message-ID: <YUiSkpRvvL0fvija@shell.armlinux.org.uk> (raw)
In-Reply-To: <20210920095218.1108151-11-horatiu.vultur@microchip.com>
On Mon, Sep 20, 2021 at 11:52:16AM +0200, Horatiu Vultur wrote:
> +static void lan966x_cleanup_ports(struct lan966x *lan966x)
> +{
> + struct lan966x_port *port;
> + int portno;
> +
> + for (portno = 0; portno < lan966x->num_phys_ports; portno++) {
> + port = lan966x->ports[portno];
> + if (!port)
> + continue;
> +
> + if (port->phylink) {
> + rtnl_lock();
> + lan966x_port_stop(port->dev);
> + rtnl_unlock();
> + port->phylink = NULL;
This leaks the phylink structure. You need to call phylink_destroy().
> static int lan966x_probe_port(struct lan966x *lan966x, u8 port,
> phy_interface_t phy_mode)
> {
> struct lan966x_port *lan966x_port;
> + struct phylink *phylink;
> + struct net_device *dev;
> + int err;
>
> if (port >= lan966x->num_phys_ports)
> return -EINVAL;
>
> - lan966x_port = devm_kzalloc(lan966x->dev, sizeof(*lan966x_port),
> - GFP_KERNEL);
> + dev = devm_alloc_etherdev_mqs(lan966x->dev,
> + sizeof(struct lan966x_port), 8, 1);
> + if (!dev)
> + return -ENOMEM;
>
> + SET_NETDEV_DEV(dev, lan966x->dev);
> + lan966x_port = netdev_priv(dev);
> + lan966x_port->dev = dev;
> lan966x_port->lan966x = lan966x;
> lan966x_port->chip_port = port;
> lan966x_port->pvid = PORT_PVID;
> lan966x->ports[port] = lan966x_port;
>
> + dev->max_mtu = ETH_MAX_MTU;
> +
> + dev->netdev_ops = &lan966x_port_netdev_ops;
> + dev->needed_headroom = IFH_LEN * sizeof(u32);
> +
> + err = register_netdev(dev);
> + if (err) {
> + dev_err(lan966x->dev, "register_netdev failed\n");
> + goto err_register_netdev;
> + }
register_netdev() publishes the network device.
> +
> + lan966x_port->phylink_config.dev = &lan966x_port->dev->dev;
> + lan966x_port->phylink_config.type = PHYLINK_NETDEV;
> + lan966x_port->phylink_config.pcs_poll = true;
> +
> + phylink = phylink_create(&lan966x_port->phylink_config,
> + lan966x_port->fwnode,
> + phy_mode,
> + &lan966x_phylink_mac_ops);
phylink_create() should always be called _prior_ to the network device
being published. In any case...
> + if (IS_ERR(phylink))
> + return PTR_ERR(phylink);
If this fails, this function returns an error, but leaves the network
device published - which is a bug in itself.
> +static void lan966x_phylink_mac_link_down(struct phylink_config *config,
> + unsigned int mode,
> + phy_interface_t interface)
> +{
Hmm? Shouldn't this do something?
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
WARNING: multiple messages have this Message-ID (diff)
From: "Russell King (Oracle)" <linux@armlinux.org.uk>
To: Horatiu Vultur <horatiu.vultur@microchip.com>
Cc: davem@davemloft.net, kuba@kernel.org, robh+dt@kernel.org,
andrew@lunn.ch, f.fainelli@gmail.com,
alexandre.belloni@bootlin.com, vladimir.oltean@nxp.com,
UNGLinuxDriver@microchip.com, netdev@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-phy@lists.infradead.org, linux-pm@vger.kernel.org
Subject: Re: [RFC PATCH net-next 10/12] net: lan966x: add port module support
Date: Mon, 20 Sep 2021 14:54:26 +0100 [thread overview]
Message-ID: <YUiSkpRvvL0fvija@shell.armlinux.org.uk> (raw)
In-Reply-To: <20210920095218.1108151-11-horatiu.vultur@microchip.com>
On Mon, Sep 20, 2021 at 11:52:16AM +0200, Horatiu Vultur wrote:
> +static void lan966x_cleanup_ports(struct lan966x *lan966x)
> +{
> + struct lan966x_port *port;
> + int portno;
> +
> + for (portno = 0; portno < lan966x->num_phys_ports; portno++) {
> + port = lan966x->ports[portno];
> + if (!port)
> + continue;
> +
> + if (port->phylink) {
> + rtnl_lock();
> + lan966x_port_stop(port->dev);
> + rtnl_unlock();
> + port->phylink = NULL;
This leaks the phylink structure. You need to call phylink_destroy().
> static int lan966x_probe_port(struct lan966x *lan966x, u8 port,
> phy_interface_t phy_mode)
> {
> struct lan966x_port *lan966x_port;
> + struct phylink *phylink;
> + struct net_device *dev;
> + int err;
>
> if (port >= lan966x->num_phys_ports)
> return -EINVAL;
>
> - lan966x_port = devm_kzalloc(lan966x->dev, sizeof(*lan966x_port),
> - GFP_KERNEL);
> + dev = devm_alloc_etherdev_mqs(lan966x->dev,
> + sizeof(struct lan966x_port), 8, 1);
> + if (!dev)
> + return -ENOMEM;
>
> + SET_NETDEV_DEV(dev, lan966x->dev);
> + lan966x_port = netdev_priv(dev);
> + lan966x_port->dev = dev;
> lan966x_port->lan966x = lan966x;
> lan966x_port->chip_port = port;
> lan966x_port->pvid = PORT_PVID;
> lan966x->ports[port] = lan966x_port;
>
> + dev->max_mtu = ETH_MAX_MTU;
> +
> + dev->netdev_ops = &lan966x_port_netdev_ops;
> + dev->needed_headroom = IFH_LEN * sizeof(u32);
> +
> + err = register_netdev(dev);
> + if (err) {
> + dev_err(lan966x->dev, "register_netdev failed\n");
> + goto err_register_netdev;
> + }
register_netdev() publishes the network device.
> +
> + lan966x_port->phylink_config.dev = &lan966x_port->dev->dev;
> + lan966x_port->phylink_config.type = PHYLINK_NETDEV;
> + lan966x_port->phylink_config.pcs_poll = true;
> +
> + phylink = phylink_create(&lan966x_port->phylink_config,
> + lan966x_port->fwnode,
> + phy_mode,
> + &lan966x_phylink_mac_ops);
phylink_create() should always be called _prior_ to the network device
being published. In any case...
> + if (IS_ERR(phylink))
> + return PTR_ERR(phylink);
If this fails, this function returns an error, but leaves the network
device published - which is a bug in itself.
> +static void lan966x_phylink_mac_link_down(struct phylink_config *config,
> + unsigned int mode,
> + phy_interface_t interface)
> +{
Hmm? Shouldn't this do something?
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
next prev parent reply other threads:[~2021-09-20 13:54 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-20 9:52 [RFC PATCH net-next 00/12] Add lan966x driver Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 9:52 ` [RFC PATCH net-next 01/12] net: mdio: mscc-miim: Fix the mdio controller Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 11:52 ` Andrew Lunn
2021-09-20 11:52 ` Andrew Lunn
2021-09-22 8:24 ` Horatiu Vultur
2021-09-22 8:24 ` Horatiu Vultur
2021-09-20 9:52 ` [RFC PATCH net-next 02/12] net: phy: mchp: Add support for LAN8804 PHY Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 10:00 ` Alexandre Belloni
2021-09-20 10:00 ` Alexandre Belloni
2021-09-20 11:59 ` Andrew Lunn
2021-09-20 11:59 ` Andrew Lunn
2021-09-22 8:35 ` Horatiu Vultur
2021-09-22 8:35 ` Horatiu Vultur
2021-09-20 9:52 ` [RFC PATCH net-next 03/12] phy: Add lan966x ethernet serdes PHY driver Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 13:42 ` Russell King (Oracle)
2021-09-20 13:42 ` Russell King (Oracle)
2021-09-22 10:04 ` Horatiu Vultur
2021-09-22 10:04 ` Horatiu Vultur
2021-09-23 12:44 ` Rob Herring
2021-09-23 12:44 ` Rob Herring
2021-09-20 9:52 ` [RFC PATCH net-next 04/12] dt-bindings: reset: Add lan966x switch reset bindings Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-23 12:49 ` Rob Herring
2021-09-23 12:49 ` Rob Herring
2021-09-20 9:52 ` [RFC PATCH net-next 05/12] reset: lan966x: Add switch reset driver Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 12:11 ` Andrew Lunn
2021-09-20 12:11 ` Andrew Lunn
2021-09-22 9:59 ` Horatiu Vultur
2021-09-22 9:59 ` Horatiu Vultur
2021-09-20 9:52 ` [RFC PATCH net-next 06/12] dt-bindings: reset: Add lan966x power reset bindings Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 9:52 ` [RFC PATCH net-next 07/12] power: reset: Add lan966x power reset driver Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 12:15 ` Andrew Lunn
2021-09-20 12:15 ` Andrew Lunn
2021-09-20 9:52 ` [RFC PATCH net-next 08/12] dt-bindings: net: lan966x: Add lan966x-switch bindings Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-23 12:53 ` Rob Herring
2021-09-23 12:53 ` Rob Herring
2021-09-20 9:52 ` [RFC PATCH net-next 09/12] net: lan966x: add the basic lan966x driver Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 13:46 ` Russell King (Oracle)
2021-09-20 13:46 ` Russell King (Oracle)
2021-09-20 9:52 ` [RFC PATCH net-next 10/12] net: lan966x: add port module support Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 13:54 ` Russell King (Oracle) [this message]
2021-09-20 13:54 ` Russell King (Oracle)
2021-09-23 8:02 ` Horatiu Vultur
2021-09-23 8:02 ` Horatiu Vultur
2021-09-20 9:52 ` [RFC PATCH net-next 11/12] net: lan966x: add mactable support Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 9:52 ` [RFC PATCH net-next 12/12] net: lan966x: add ethtool configuration and statistics Horatiu Vultur
2021-09-20 9:52 ` Horatiu Vultur
2021-09-20 20:31 ` Jakub Kicinski
2021-09-20 20:31 ` Jakub Kicinski
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=YUiSkpRvvL0fvija@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=UNGLinuxDriver@microchip.com \
--cc=alexandre.belloni@bootlin.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=horatiu.vultur@microchip.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-pm@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=vladimir.oltean@nxp.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.