netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] gianfar: Check if phydev present on ethtool -A
@ 2014-04-23 13:38 Claudiu Manoil
  2014-04-23 16:21 ` Ben Hutchings
  2014-04-24 17:36 ` David Miller
  0 siblings, 2 replies; 5+ messages in thread
From: Claudiu Manoil @ 2014-04-23 13:38 UTC (permalink / raw)
  To: netdev; +Cc: David S. Miller

This fixes a seg fault on 'ethtool -A' entry if the
interface is down.  Obviously we need to have the
phy device initialized / "connected" (see of_phy_connect())
to be able to advertise pause frame capabilities.

Fixes: 23402bddf9e56eecb27bbd1e5467b3b79b3dbe58
Signed-off-by: Claudiu Manoil <claudiu.manoil@freescale.com>
---
 drivers/net/ethernet/freescale/gianfar_ethtool.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/ethernet/freescale/gianfar_ethtool.c b/drivers/net/ethernet/freescale/gianfar_ethtool.c
index 891dbee..76d7070 100644
--- a/drivers/net/ethernet/freescale/gianfar_ethtool.c
+++ b/drivers/net/ethernet/freescale/gianfar_ethtool.c
@@ -533,6 +533,9 @@ static int gfar_spauseparam(struct net_device *dev,
 	struct gfar __iomem *regs = priv->gfargrp[0].regs;
 	u32 oldadv, newadv;
 
+	if (!phydev)
+		return -ENODEV;
+
 	if (!(phydev->supported & SUPPORTED_Pause) ||
 	    (!(phydev->supported & SUPPORTED_Asym_Pause) &&
 	     (epause->rx_pause != epause->tx_pause)))
-- 
1.7.11.7

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-04-26 23:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-23 13:38 [PATCH net] gianfar: Check if phydev present on ethtool -A Claudiu Manoil
2014-04-23 16:21 ` Ben Hutchings
2014-04-24  8:04   ` Claudiu Manoil
2014-04-26 23:18     ` Ben Hutchings
2014-04-24 17:36 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).