From: xypron.glpk@gmx.de Date: Tue, 17 May 2016 19:40:38 +0000 (+0200) Subject: net: thunderx: avoid null pointer dereference X-Git-Tag: v4.7-rc1~96^2~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=099a728d5819da80ff9fff3df980ea6e89a01e60;p=platform%2Fkernel%2Flinux-exynos.git net: thunderx: avoid null pointer dereference In function bgx_lmac_handler only use a member of lmac after checking it is not null. Signed-off-by: Heinrich Schuchardt Acked-by: David Daney Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/cavium/thunder/thunder_bgx.c b/drivers/net/ethernet/cavium/thunder/thunder_bgx.c index d20539a..3ed2198 100644 --- a/drivers/net/ethernet/cavium/thunder/thunder_bgx.c +++ b/drivers/net/ethernet/cavium/thunder/thunder_bgx.c @@ -274,12 +274,14 @@ static void bgx_sgmii_change_link_state(struct lmac *lmac) static void bgx_lmac_handler(struct net_device *netdev) { struct lmac *lmac = container_of(netdev, struct lmac, netdev); - struct phy_device *phydev = lmac->phydev; + struct phy_device *phydev; int link_changed = 0; if (!lmac) return; + phydev = lmac->phydev; + if (!phydev->link && lmac->last_link) link_changed = -1;