From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936678AbcLUBCm (ORCPT ); Tue, 20 Dec 2016 20:02:42 -0500 Received: from mail-pg0-f68.google.com ([74.125.83.68]:33087 "EHLO mail-pg0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934123AbcLUBCk (ORCPT ); Tue, 20 Dec 2016 20:02:40 -0500 Subject: Re: [PATCH] staging: octeon: Call SET_NETDEV_DEV() To: netdev@vger.kernel.org References: <20161215011326.8852-1-f.fainelli@gmail.com> Cc: davem@davemloft.net, Greg Kroah-Hartman , Aaro Koskinen , Laura Garcia Liebana , Philippe Reynes , Asbjoern Sloth Toennesen , Jarod Wilson , Bhaktipriya Shridhar , "open list:STAGING SUBSYSTEM" , open list From: Florian Fainelli Message-ID: Date: Tue, 20 Dec 2016 17:02:37 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <20161215011326.8852-1-f.fainelli@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/14/2016 05:13 PM, Florian Fainelli wrote: > The Octeon driver calls into PHYLIB which now checks for > net_device->dev.parent, so make sure we do set it before calling into > any MDIO/PHYLIB related function. > > Fixes: ec988ad78ed6 ("phy: Don't increment MDIO bus refcount unless it's a different owner") > Reported-by: Aaro Koskinen > Signed-off-by: Florian Fainelli Greg, David, since this is a fix for a regression introduced in the net tree, it may make sense that David take it via his tree. Thanks > --- > drivers/staging/octeon/ethernet.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/staging/octeon/ethernet.c b/drivers/staging/octeon/ethernet.c > index 8130dfe89745..4971aa54756a 100644 > --- a/drivers/staging/octeon/ethernet.c > +++ b/drivers/staging/octeon/ethernet.c > @@ -770,6 +770,7 @@ static int cvm_oct_probe(struct platform_device *pdev) > /* Initialize the device private structure. */ > struct octeon_ethernet *priv = netdev_priv(dev); > > + SET_NETDEV_DEV(dev, &pdev->dev); > dev->netdev_ops = &cvm_oct_pow_netdev_ops; > priv->imode = CVMX_HELPER_INTERFACE_MODE_DISABLED; > priv->port = CVMX_PIP_NUM_INPUT_PORTS; > @@ -816,6 +817,7 @@ static int cvm_oct_probe(struct platform_device *pdev) > } > > /* Initialize the device private structure. */ > + SET_NETDEV_DEV(dev, &pdev->dev); > priv = netdev_priv(dev); > priv->netdev = dev; > priv->of_node = cvm_oct_node_for_port(pip, interface, > -- Florian