diff options
author | Thomas Graf <tgraf@suug.ch> | 2015-07-23 10:08:44 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-07-23 01:28:21 -0700 |
commit | 045a0fa0c5f5ea0f16c009f924ea579634afbba8 (patch) | |
tree | 10037431a845453ca3942ccbe9a8ebb413baa212 /net/ipv4/ip_tunnel_core.c | |
parent | c5e40ee287db61a79af1746954ee03ebbf1ff8a3 (diff) | |
download | linux-stable-045a0fa0c5f5ea0f16c009f924ea579634afbba8.tar.gz linux-stable-045a0fa0c5f5ea0f16c009f924ea579634afbba8.tar.bz2 linux-stable-045a0fa0c5f5ea0f16c009f924ea579634afbba8.zip |
ip_tunnel: Call ip_tunnel_core_init() from inet_init()
Convert the module_init() to a invocation from inet_init() since
ip_tunnel_core is part of the INET built-in.
Fixes: 3093fbe7ff4 ("route: Per route IP tunnel metadata via lightweight tunnel")
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_tunnel_core.c')
-rw-r--r-- | net/ipv4/ip_tunnel_core.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/net/ipv4/ip_tunnel_core.c b/net/ipv4/ip_tunnel_core.c index 630e6d5712e8..5512f4e4ec1b 100644 --- a/net/ipv4/ip_tunnel_core.c +++ b/net/ipv4/ip_tunnel_core.c @@ -292,19 +292,10 @@ static const struct lwtunnel_encap_ops ip_tun_lwt_ops = { .get_encap_size = ip_tun_encap_nlsize, }; -static int __init ip_tunnel_core_init(void) +void __init ip_tunnel_core_init(void) { lwtunnel_encap_add_ops(&ip_tun_lwt_ops, LWTUNNEL_ENCAP_IP); - - return 0; -} -module_init(ip_tunnel_core_init); - -static void __exit ip_tunnel_core_exit(void) -{ - lwtunnel_encap_del_ops(&ip_tun_lwt_ops, LWTUNNEL_ENCAP_IP); } -module_exit(ip_tunnel_core_exit); struct static_key ip_tunnel_metadata_cnt = STATIC_KEY_INIT_FALSE; EXPORT_SYMBOL(ip_tunnel_metadata_cnt); |