Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 66277
b: refs/heads/master
c: 17951f3
h: refs/heads/master
i:
  66275: 6ab94d0
v: v3
  • Loading branch information
Satyam Sharma authored and David S. Miller committed Oct 10, 2007
1 parent 03f61c9 commit d9a4692
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: df180e369cf54a8ef8440667ab1d13d452fc7215
refs/heads/master: 17951f34b0970b05e29fd93a5b93fa05ec71308b
32 changes: 32 additions & 0 deletions trunk/drivers/net/netconsole.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,33 @@ static struct netconsole_target default_target = {
},
};

/* Handle network interface device notifications */
static int netconsole_netdev_event(struct notifier_block *this,
unsigned long event,
void *ptr)
{
struct net_device *dev = ptr;
struct netconsole_target *nt = &default_target;

if (nt->np.dev == dev) {
switch (event) {
case NETDEV_CHANGEADDR:
memcpy(nt->np.local_mac, dev->dev_addr, ETH_ALEN);
break;

case NETDEV_CHANGENAME:
strlcpy(nt->np.dev_name, dev->name, IFNAMSIZ);
break;
}
}

return NOTIFY_DONE;
}

static struct notifier_block netconsole_netdev_notifier = {
.notifier_call = netconsole_netdev_event,
};

static void write_msg(struct console *con, const char *msg, unsigned int len)
{
int frag, left;
Expand Down Expand Up @@ -122,6 +149,10 @@ static int __init init_netconsole(void)
if (err)
goto out;

err = register_netdevice_notifier(&netconsole_netdev_notifier);
if (err)
goto out;

register_console(&netconsole);
printk(KERN_INFO "netconsole: network logging started\n");

Expand All @@ -134,6 +165,7 @@ static void __exit cleanup_netconsole(void)
struct netconsole_target *nt = &default_target;

unregister_console(&netconsole);
unregister_netdevice_notifier(&netconsole_netdev_notifier);
netpoll_cleanup(&nt->np);
}

Expand Down

0 comments on commit d9a4692

Please sign in to comment.