mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 07:03:37 +02:00
CIFS: Remove __exit mark from cifs_exit_dns_resolver()
commit 51c20fcced upstream.
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: David Howells <dhowells@redhat.com>
Acked-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2891de0435
commit
2d43ec0e0a
|
|
@ -226,7 +226,7 @@ int __init cifs_init_dns_resolver(void)
|
|||
return ret;
|
||||
}
|
||||
|
||||
void __exit cifs_exit_dns_resolver(void)
|
||||
void cifs_exit_dns_resolver(void)
|
||||
{
|
||||
key_revoke(dns_resolver_cache->thread_keyring);
|
||||
unregister_key_type(&key_type_dns_resolver);
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#ifdef __KERNEL__
|
||||
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);
|
||||
#endif /* KERNEL */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user