From: Patrick McHardy Date: Thu, 12 Oct 2006 21:08:11 +0000 (-0700) Subject: [NETFILTER]: arp_tables: missing unregistration on module unload X-Git-Tag: v2.6.19-rc3~206^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f603b6ec50faabbabde53ae2e2ce774968524c40;p=platform%2Fkernel%2Flinux-exynos.git [NETFILTER]: arp_tables: missing unregistration on module unload Signed-off-by: Patrick McHardy Signed-off-by: David S. Miller --- diff --git a/net/ipv4/netfilter/arp_tables.c b/net/ipv4/netfilter/arp_tables.c index 17e1a68..0849f1c 100644 --- a/net/ipv4/netfilter/arp_tables.c +++ b/net/ipv4/netfilter/arp_tables.c @@ -1196,6 +1196,8 @@ err1: static void __exit arp_tables_fini(void) { nf_unregister_sockopt(&arpt_sockopts); + xt_unregister_target(&arpt_error_target); + xt_unregister_target(&arpt_standard_target); xt_proto_fini(NF_ARP); }