diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/net/ipv6.h | 4 | ||||
-rw-r--r-- | include/net/netns/ipv6.h | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 3e086f8bb449..5519035491e7 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h | |||
@@ -619,8 +619,8 @@ static inline int snmp6_unregister_dev(struct inet6_dev *idev) | |||
619 | #endif | 619 | #endif |
620 | 620 | ||
621 | #ifdef CONFIG_SYSCTL | 621 | #ifdef CONFIG_SYSCTL |
622 | extern ctl_table ipv6_route_table[]; | 622 | extern ctl_table ipv6_route_table_template[]; |
623 | extern ctl_table ipv6_icmp_table[]; | 623 | extern ctl_table ipv6_icmp_table_template[]; |
624 | 624 | ||
625 | extern int ipv6_sysctl_register(void); | 625 | extern int ipv6_sysctl_register(void); |
626 | extern void ipv6_sysctl_unregister(void); | 626 | extern void ipv6_sysctl_unregister(void); |
diff --git a/include/net/netns/ipv6.h b/include/net/netns/ipv6.h index 6f82046e3013..58fbf30d9fdb 100644 --- a/include/net/netns/ipv6.h +++ b/include/net/netns/ipv6.h | |||
@@ -5,6 +5,15 @@ | |||
5 | #ifndef __NETNS_IPV6_H__ | 5 | #ifndef __NETNS_IPV6_H__ |
6 | #define __NETNS_IPV6_H__ | 6 | #define __NETNS_IPV6_H__ |
7 | 7 | ||
8 | struct ctl_table_header; | ||
9 | |||
10 | struct netns_sysctl_ipv6 { | ||
11 | #ifdef CONFIG_SYSCTL | ||
12 | struct ctl_table_header *table; | ||
13 | #endif | ||
14 | }; | ||
15 | |||
8 | struct netns_ipv6 { | 16 | struct netns_ipv6 { |
17 | struct netns_sysctl_ipv6 sysctl; | ||
9 | }; | 18 | }; |
10 | #endif | 19 | #endif |