Commit cd061574 authored by Cong Wang's avatar Cong Wang Committed by David S. Miller

net: fix a build failure when !CONFIG_PROC_FS

When !CONFIG_PROC_FS dev_mcast_init() is not defined,
actually we can just merge dev_mcast_init() into
dev_proc_init().
Reported-by: default avatarGao feng <gaofeng@cn.fujitsu.com>
Cc: Gao feng <gaofeng@cn.fujitsu.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: default avatarCong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 082c7ca4
...@@ -2646,7 +2646,6 @@ extern void netdev_notify_peers(struct net_device *dev); ...@@ -2646,7 +2646,6 @@ extern void netdev_notify_peers(struct net_device *dev);
extern void netdev_features_change(struct net_device *dev); extern void netdev_features_change(struct net_device *dev);
/* Load a device via the kmod */ /* Load a device via the kmod */
extern void dev_load(struct net *net, const char *name); extern void dev_load(struct net *net, const char *name);
extern void dev_mcast_init(void);
extern struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev, extern struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
struct rtnl_link_stats64 *storage); struct rtnl_link_stats64 *storage);
extern void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64, extern void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
......
...@@ -6260,7 +6260,6 @@ static int __init net_dev_init(void) ...@@ -6260,7 +6260,6 @@ static int __init net_dev_init(void)
hotcpu_notifier(dev_cpu_callback, 0); hotcpu_notifier(dev_cpu_callback, 0);
dst_init(); dst_init();
dev_mcast_init();
rc = 0; rc = 0;
out: out:
return rc; return rc;
......
...@@ -341,11 +341,6 @@ static struct pernet_operations __net_initdata dev_proc_ops = { ...@@ -341,11 +341,6 @@ static struct pernet_operations __net_initdata dev_proc_ops = {
.exit = dev_proc_net_exit, .exit = dev_proc_net_exit,
}; };
int __init dev_proc_init(void)
{
return register_pernet_subsys(&dev_proc_ops);
}
static int dev_mc_seq_show(struct seq_file *seq, void *v) static int dev_mc_seq_show(struct seq_file *seq, void *v)
{ {
struct netdev_hw_addr *ha; struct netdev_hw_addr *ha;
...@@ -408,7 +403,10 @@ static struct pernet_operations __net_initdata dev_mc_net_ops = { ...@@ -408,7 +403,10 @@ static struct pernet_operations __net_initdata dev_mc_net_ops = {
.exit = dev_mc_net_exit, .exit = dev_mc_net_exit,
}; };
void __init dev_mcast_init(void) int __init dev_proc_init(void)
{ {
register_pernet_subsys(&dev_mc_net_ops); int ret = register_pernet_subsys(&dev_proc_ops);
if (!ret)
return register_pernet_subsys(&dev_mc_net_ops);
return ret;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment