Skip to content
Snippets Groups Projects
Commit 51c20fcc authored by David Howells's avatar David Howells Committed by Linus Torvalds
Browse files

CIFS: Remove __exit mark from cifs_exit_dns_resolver()


Remove the __exit mark from cifs_exit_dns_resolver() as it's called by the
module init routine in case of error, and so may have been discarded during
linkage.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Acked-by: default avatarJeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a2dccdb2
No related branches found
No related tags found
No related merge requests found
...@@ -227,7 +227,7 @@ int __init cifs_init_dns_resolver(void) ...@@ -227,7 +227,7 @@ int __init cifs_init_dns_resolver(void)
return ret; return ret;
} }
void __exit cifs_exit_dns_resolver(void) void cifs_exit_dns_resolver(void)
{ {
key_revoke(dns_resolver_cache->thread_keyring); key_revoke(dns_resolver_cache->thread_keyring);
unregister_key_type(&key_type_dns_resolver); unregister_key_type(&key_type_dns_resolver);
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#ifdef __KERNEL__ #ifdef __KERNEL__
extern int __init cifs_init_dns_resolver(void); extern int __init cifs_init_dns_resolver(void);
extern void __exit cifs_exit_dns_resolver(void); extern void cifs_exit_dns_resolver(void);
extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr); extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr);
#endif /* KERNEL */ #endif /* KERNEL */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment