diff options
author | Keiichi KII <k-keiichi@bx.jp.nec.com> | 2008-02-15 05:01:58 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-02-15 05:01:58 -0500 |
commit | 69c3683ca7fe066ecba9e8a0424c5abd258a5d58 (patch) | |
tree | 885d2e9eca411c70d600623b2bfb9526304f1320 | |
parent | b5c15fc004ac83b7ad280acbe0fd4bbed7e2c8d4 (diff) |
netconsole: avoid null pointer dereference at show_local_mac()
This patch avoids a null pointer dereference when we read local_mac
for netconsole in configfs and shows default local mac address
value.
A null pointer dereference occurs when we call show_local_mac() via
local_mac entry in configfs before we setup the content of netpoll
using netpoll_setup().
Signed-off-by: Keiichi KII <k-keiichi@bx.jp.nec.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/netconsole.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index 31e047dd7bb3..501e451be911 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c | |||
@@ -309,8 +309,8 @@ static ssize_t show_local_mac(struct netconsole_target *nt, char *buf) | |||
309 | struct net_device *dev = nt->np.dev; | 309 | struct net_device *dev = nt->np.dev; |
310 | 310 | ||
311 | DECLARE_MAC_BUF(mac); | 311 | DECLARE_MAC_BUF(mac); |
312 | return snprintf(buf, PAGE_SIZE, "%s\n", | 312 | return snprintf(buf, PAGE_SIZE, "%s\n", dev ? |
313 | print_mac(mac, dev->dev_addr)); | 313 | print_mac(mac, dev->dev_addr) : "ff:ff:ff:ff:ff:ff"); |
314 | } | 314 | } |
315 | 315 | ||
316 | static ssize_t show_remote_mac(struct netconsole_target *nt, char *buf) | 316 | static ssize_t show_remote_mac(struct netconsole_target *nt, char *buf) |