aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/addrconf.h3
-rw-r--r--include/net/ipv6.h17
2 files changed, 8 insertions, 12 deletions
diff --git a/include/net/addrconf.h b/include/net/addrconf.h
index c9276c72764d..d0c47c306046 100644
--- a/include/net/addrconf.h
+++ b/include/net/addrconf.h
@@ -134,7 +134,8 @@ extern int inet6_ac_check(struct sock *sk, struct in6_addr *addr, int ifindex);
134 134
135extern int ipv6_dev_ac_inc(struct net_device *dev, struct in6_addr *addr); 135extern int ipv6_dev_ac_inc(struct net_device *dev, struct in6_addr *addr);
136extern int __ipv6_dev_ac_dec(struct inet6_dev *idev, struct in6_addr *addr); 136extern int __ipv6_dev_ac_dec(struct inet6_dev *idev, struct in6_addr *addr);
137extern int ipv6_chk_acast_addr(struct net_device *dev, struct in6_addr *addr); 137extern int ipv6_chk_acast_addr(struct net *net, struct net_device *dev,
138 struct in6_addr *addr);
138 139
139 140
140/* Device notifier */ 141/* Device notifier */
diff --git a/include/net/ipv6.h b/include/net/ipv6.h
index e82f1814d96b..1c98e737dbd0 100644
--- a/include/net/ipv6.h
+++ b/include/net/ipv6.h
@@ -591,8 +591,8 @@ extern int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
591 int __user *optlen); 591 int __user *optlen);
592 592
593#ifdef CONFIG_PROC_FS 593#ifdef CONFIG_PROC_FS
594extern int ac6_proc_init(void); 594extern int ac6_proc_init(struct net *net);
595extern void ac6_proc_exit(void); 595extern void ac6_proc_exit(struct net *net);
596extern int raw6_proc_init(void); 596extern int raw6_proc_init(void);
597extern void raw6_proc_exit(void); 597extern void raw6_proc_exit(void);
598extern int tcp6_proc_init(struct net *net); 598extern int tcp6_proc_init(struct net *net);
@@ -607,15 +607,10 @@ extern int snmp6_register_dev(struct inet6_dev *idev);
607extern int snmp6_unregister_dev(struct inet6_dev *idev); 607extern int snmp6_unregister_dev(struct inet6_dev *idev);
608 608
609#else 609#else
610static inline int snmp6_register_dev(struct inet6_dev *idev) 610static inline int ac6_proc_init(struct net *net) { return 0; }
611{ 611static inline void ac6_proc_exit(struct net *net) { }
612 return 0; 612static inline int snmp6_register_dev(struct inet6_dev *idev) { return 0; }
613} 613static inline int snmp6_unregister_dev(struct inet6_dev *idev) { return 0; }
614
615static inline int snmp6_unregister_dev(struct inet6_dev *idev)
616{
617 return 0;
618}
619#endif 614#endif
620 615
621#ifdef CONFIG_SYSCTL 616#ifdef CONFIG_SYSCTL