]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'phy-relax-error-checking'
authorDavid S. Miller <davem@davemloft.net>
Tue, 20 Mar 2018 01:14:27 +0000 (21:14 -0400)
committerDavid S. Miller <davem@davemloft.net>
Tue, 20 Mar 2018 01:14:27 +0000 (21:14 -0400)
commitd373e5abe43af20156a5513ee59f99d5b33edccc
treeebb85cbfdbb58eb932a8f01b6f95b83fcc060ecf
parent0741c2f4db600701d10653792819408199391a3d
parentea4b0119e156d24424ec5fc4ba0a4b83bc398eaa
Merge branch 'phy-relax-error-checking'

Grygorii Strashko says:

====================
net: phy: relax error checking when creating sysfs link netdev->phydev

Some ethernet drivers (like TI CPSW) may connect and manage >1 Net PHYs per
one netdevice, as result such drivers will produce warning during system
boot and fail to connect second phy to netdevice when PHYLIB framework
will try to create sysfs link netdev->phydev for second PHY
in phy_attach_direct(), because sysfs link with the same name has been
created already for the first PHY.
As result, second CPSW external port will became unusable.
This regression was introduced by commits:
807921b4cc49 ("net: phy: Create sysfs reciprocal links for attached_dev/phydev"
5a0cf3cd0565 ("net: phy: Relax error checking on sysfs_create_link()"

Patch 1: exports sysfs_create_link_nowarn() function as preparation for Patch 2.
Patch 2: relaxes error checking when PHYLIB framework is creating sysfs
link netdev->phydev in phy_attach_direct(), suppresses warning by using
sysfs_create_link_nowarn() and adds error message instead, so links creation
failure is not fatal any more and system can continue working,
which fixes TI CPSW issue and makes boot logs accessible
in case of NFS boot, for example.

This can be stable material 4.13+.

Changes in v2:
- commit messages updated.

v1:
 https://patchwork.ozlabs.org/cover/886058/
====================

Signed-off-by: David S. Miller <davem@davemloft.net>