lkml.org 
[lkml]   [2020]   [Nov]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2] lan743x: Fix for potential null pointer dereference
On Sun, Nov 01, 2020 at 10:54:38PM +0300, Sergej Bauer wrote:
> > > Signed-off-by: Sergej Bauer <sbauer@blackbox.su>
> >
> > * I miss a change description here.
> The reason for the fix is when the device is down netdev->phydev will be NULL
> and there is no checking for this situation. So 'ethtool ethN' leads to kernel
> panic.

> > > @@ -809,9 +812,12 @@ static int lan743x_ethtool_set_wol(struct net_device
> > > *netdev,>
> > > device_set_wakeup_enable(&adapter->pdev->dev, (bool)wol->wolopts);
> > >
> > > - phy_ethtool_set_wol(netdev->phydev, wol);
> > > + if (netdev->phydev)
> > > + ret = phy_ethtool_set_wol(netdev->phydev, wol);
> > > + else
> > > + ret = -EIO;

-ENETDOWN would be better, it gives a hit that WoL can be configured
when the interface is configured up.

Andrew

\
 
 \ /
  Last update: 2020-11-01 21:39    [W:0.045 / U:0.564 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site