aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ipv6.h
diff options
context:
space:
mode:
authorDaniel Lezcano <dlezcano@fr.ibm.com>2008-03-26 19:52:32 -0400
committerDavid S. Miller <davem@davemloft.net>2008-03-26 19:52:32 -0400
commit6ab57e7e7fa316552d0f94eaebf1def1d49f18da (patch)
tree5e0f5d2d9d302758a6c3bebd91ff0c11b110f5a1 /include/net/ipv6.h
parenta233352506be35aafd49c0ba8c88ca96ebde1c3d (diff)
[NETNS][IPV6] anycast - handle several network namespace
Make use of the network namespace information to have this protocol to handle several network namespace. Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com> Signed-off-by: Benjamin Thery <benjamin.thery@bull.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ipv6.h')
-rw-r--r--include/net/ipv6.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h
index e82f1814d96..1c98e737dbd 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