[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1429024817-21561-3-git-send-email-honli@redhat.com>
Date: Tue, 14 Apr 2015 23:20:15 +0800
From: Honggang Li <honli@...hat.com>
To: roland@...nel.org, sean.hefty@...el.com, hal.rosenstock@...il.com,
kaber@...sh.net, davem@...emloft.net, alex.estrin@...el.com,
dledford@...hat.com, edumazet@...gle.com, erezsh@...lanox.com,
nicolas.dichtel@...nd.com, maheshb@...gle.com, jbenc@...hat.com,
ebiederm@...ssion.com, elfring@...rs.sourceforge.net,
f.fainelli@...il.com, linux@...ck-us.net, andrew@...n.ch,
sfeldma@...il.com, alexander.h.duyck@...el.com,
linux-rdma@...r.kernel.org, linux-kernel@...r.kernel.org,
netdev@...r.kernel.org
Cc: Honggang Li <honli@...hat.com>
Subject: [PATCH linux-next 2/4] ipvlan: fix possible NULL pointer dereference in ipvlan_get_iflink
Signed-off-by: Honggang Li <honli@...hat.com>
---
drivers/net/ipvlan/ipvlan_main.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ipvlan/ipvlan_main.c b/drivers/net/ipvlan/ipvlan_main.c
index 77b92a0..479fcf7 100644
--- a/drivers/net/ipvlan/ipvlan_main.c
+++ b/drivers/net/ipvlan/ipvlan_main.c
@@ -308,7 +308,10 @@ static int ipvlan_get_iflink(const struct net_device *dev)
{
struct ipvl_dev *ipvlan = netdev_priv(dev);
- return ipvlan->phy_dev->ifindex;
+ if (ipvlan && pvlan->phy_dev)
+ return ipvlan->phy_dev->ifindex;
+ else
+ return 0;
}
static const struct net_device_ops ipvlan_netdev_ops = {
--
1.8.3.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists