diff options
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/Makefile | 3 | ||||
-rw-r--r-- | net/ipv6/netfilter.c | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/net/ipv6/Makefile b/net/ipv6/Makefile index bf18cff13120..41877abd22e6 100644 --- a/net/ipv6/Makefile +++ b/net/ipv6/Makefile | |||
@@ -12,13 +12,14 @@ ipv6-objs := af_inet6.o anycast.o ip6_output.o ip6_input.o addrconf.o sit.o \ | |||
12 | 12 | ||
13 | ipv6-$(CONFIG_XFRM) += xfrm6_policy.o xfrm6_state.o xfrm6_input.o \ | 13 | ipv6-$(CONFIG_XFRM) += xfrm6_policy.o xfrm6_state.o xfrm6_input.o \ |
14 | xfrm6_output.o | 14 | xfrm6_output.o |
15 | ipv6-$(CONFIG_NETFILTER) += netfilter.o | ||
15 | ipv6-objs += $(ipv6-y) | 16 | ipv6-objs += $(ipv6-y) |
16 | 17 | ||
17 | obj-$(CONFIG_INET6_AH) += ah6.o | 18 | obj-$(CONFIG_INET6_AH) += ah6.o |
18 | obj-$(CONFIG_INET6_ESP) += esp6.o | 19 | obj-$(CONFIG_INET6_ESP) += esp6.o |
19 | obj-$(CONFIG_INET6_IPCOMP) += ipcomp6.o | 20 | obj-$(CONFIG_INET6_IPCOMP) += ipcomp6.o |
20 | obj-$(CONFIG_INET6_TUNNEL) += xfrm6_tunnel.o | 21 | obj-$(CONFIG_INET6_TUNNEL) += xfrm6_tunnel.o |
21 | obj-$(CONFIG_NETFILTER) += netfilter.o netfilter/ | 22 | obj-$(CONFIG_NETFILTER) += netfilter/ |
22 | 23 | ||
23 | obj-$(CONFIG_IPV6_TUNNEL) += ip6_tunnel.o | 24 | obj-$(CONFIG_IPV6_TUNNEL) += ip6_tunnel.o |
24 | 25 | ||
diff --git a/net/ipv6/netfilter.c b/net/ipv6/netfilter.c index 1ab62f033664..d750cfc019dc 100644 --- a/net/ipv6/netfilter.c +++ b/net/ipv6/netfilter.c | |||
@@ -90,7 +90,10 @@ int __init ipv6_netfilter_init(void) | |||
90 | return nf_register_queue_rerouter(PF_INET6, &ip6_reroute); | 90 | return nf_register_queue_rerouter(PF_INET6, &ip6_reroute); |
91 | } | 91 | } |
92 | 92 | ||
93 | void __exit ipv6_netfilter_fini(void) | 93 | /* This can be called from inet6_init() on errors, so it cannot |
94 | * be marked __exit. -DaveM | ||
95 | */ | ||
96 | void ipv6_netfilter_fini(void) | ||
94 | { | 97 | { |
95 | nf_unregister_queue_rerouter(PF_INET6); | 98 | nf_unregister_queue_rerouter(PF_INET6); |
96 | } | 99 | } |