diff options
author | Cong Wang <amwang@redhat.com> | 2013-05-28 23:30:50 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-05-29 00:58:54 -0400 |
commit | 75538c2b85cf22eb9af6adfaf26ed7219025adeb (patch) | |
tree | f6791d0d285ff7e716fe8f225c4648e62a34421e /net/core | |
parent | 06ecf24bdf2b7afc6c8fd13de6dba2a96dd331b6 (diff) |
net: always pass struct netdev_notifier_info to netdevice notifiers
commit 351638e7deeed2ec8ce451b53d3 (net: pass info struct via netdevice notifier)
breaks booting of my KVM guest, this is due to we still forget to pass
struct netdev_notifier_info in several places. This patch completes it.
Cc: Jiri Pirko <jiri@resnulli.us>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 6eb621cc3b81..b2e9057be3bf 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -1391,12 +1391,6 @@ void dev_disable_lro(struct net_device *dev) | |||
1391 | } | 1391 | } |
1392 | EXPORT_SYMBOL(dev_disable_lro); | 1392 | EXPORT_SYMBOL(dev_disable_lro); |
1393 | 1393 | ||
1394 | static void netdev_notifier_info_init(struct netdev_notifier_info *info, | ||
1395 | struct net_device *dev) | ||
1396 | { | ||
1397 | info->dev = dev; | ||
1398 | } | ||
1399 | |||
1400 | static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val, | 1394 | static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val, |
1401 | struct net_device *dev) | 1395 | struct net_device *dev) |
1402 | { | 1396 | { |