diff options
author | Simon Horman <horms@verge.net.au> | 2011-02-01 18:30:26 +0100 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2011-02-01 18:30:26 +0100 |
commit | ed3d1e7b72069a3463b7e227b18cae4a09b0ddad (patch) | |
tree | bc577e3e7d58330b19a6f163e0ea60a90599f5a4 /net/netfilter/ipvs | |
parent | 0443929ff0ecc4d1e690edaffa338cabe0863d3b (diff) | |
download | linux-stable-ed3d1e7b72069a3463b7e227b18cae4a09b0ddad.tar.gz linux-stable-ed3d1e7b72069a3463b7e227b18cae4a09b0ddad.tar.bz2 linux-stable-ed3d1e7b72069a3463b7e227b18cae4a09b0ddad.zip |
IPVS: Remove ip_vs_sync_cleanup from section __exit
ip_vs_sync_cleanup() may be called from ip_vs_init() on error
and thus needs to be accesible from section __init
Reporte-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Hans Schillstrom <hans@schillstrom.com>
Tested-by: Hans Schillstrom <hans@schillstrom.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/netfilter/ipvs')
-rw-r--r-- | net/netfilter/ipvs/ip_vs_sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/ipvs/ip_vs_sync.c b/net/netfilter/ipvs/ip_vs_sync.c index d5a6e640ea45..2a2a8363ca16 100644 --- a/net/netfilter/ipvs/ip_vs_sync.c +++ b/net/netfilter/ipvs/ip_vs_sync.c @@ -1686,7 +1686,7 @@ int __init ip_vs_sync_init(void) return register_pernet_subsys(&ipvs_sync_ops); } -void __exit ip_vs_sync_cleanup(void) +void ip_vs_sync_cleanup(void) { unregister_pernet_subsys(&ipvs_sync_ops); } |