diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-01-22 17:18:38 +0900 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:10:27 -0800 |
commit | 2334ecbdb27bd1745c0fc6d05cce09ed9585e4c1 (patch) | |
tree | 58f31ad3d238fbb8e1073770f8f483ae2a752aa1 /include/net/ipv6.h | |
parent | 40fee36e11b49f92bc7c385bd45d7805c0127a34 (diff) | |
download | linux-3.10-2334ecbdb27bd1745c0fc6d05cce09ed9585e4c1.tar.gz linux-3.10-2334ecbdb27bd1745c0fc6d05cce09ed9585e4c1.tar.bz2 linux-3.10-2334ecbdb27bd1745c0fc6d05cce09ed9585e4c1.zip |
[IPV6]: Sparse: Declare non-static ipv6_{route,icmp,frag}_sysctl_init() in header.
Fix the following sparse warnings:
| net/ipv6/route.c:2491:18: warning: symbol 'ipv6_route_sysctl_init' was not declared. Should it be static?
| net/ipv6/icmp.c:922:18: warning: symbol 'ipv6_icmp_sysctl_init' was not declared. Should it be static?
| net/ipv6/reassembly.c:628:6: warning: symbol 'ipv6_frag_sysctl_init' was not declared. Should it be static?
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Diffstat (limited to 'include/net/ipv6.h')
-rw-r--r-- | include/net/ipv6.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index c8e8cb24109..3712caeae74 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h @@ -586,6 +586,10 @@ extern int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf, int __user *optlen); #ifdef CONFIG_PROC_FS +extern struct ctl_table *ipv6_icmp_sysctl_init(struct net *net); +extern void ipv6_frag_sysctl_init(struct net *net); +extern struct ctl_table *ipv6_route_sysctl_init(struct net *net); + extern int ac6_proc_init(void); extern void ac6_proc_exit(void); extern int raw6_proc_init(void); |