The patch titled cifs: remove __exit mark from cifs_exit_dns_resolver() has been added to the -mm tree. Its filename is cifs-remove-__exit-mark-from-cifs_exit_dns_resolver.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: cifs: remove __exit mark from cifs_exit_dns_resolver() From: David Howells <dhowells@xxxxxxxxxx> 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@xxxxxxxxxx> Acked-by: Jeff Layton <jlayton@xxxxxxxxxx> Cc: Steven French <sfrench@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/cifs/dns_resolve.c | 2 +- fs/cifs/dns_resolve.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN fs/cifs/dns_resolve.c~cifs-remove-__exit-mark-from-cifs_exit_dns_resolver fs/cifs/dns_resolve.c --- a/fs/cifs/dns_resolve.c~cifs-remove-__exit-mark-from-cifs_exit_dns_resolver +++ a/fs/cifs/dns_resolve.c @@ -228,7 +228,7 @@ failed_put_cred: 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); diff -puN fs/cifs/dns_resolve.h~cifs-remove-__exit-mark-from-cifs_exit_dns_resolver fs/cifs/dns_resolve.h --- a/fs/cifs/dns_resolve.h~cifs-remove-__exit-mark-from-cifs_exit_dns_resolver +++ a/fs/cifs/dns_resolve.h @@ -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 */ _ Patches currently in -mm which might be from dhowells@xxxxxxxxxx are origin.patch cifs-remove-__exit-mark-from-cifs_exit_dns_resolver.patch linux-next.patch kmap_atomic-make-kunmap_atomic-harder-to-misuse.patch frv-duplicate-output_buffer-of-e03.patch rwsem-fully-separate-code-pathes-to-wake-writers-vs-readers.patch rwsem-lighter-active-count-checks-when-waking-up-readers.patch rwsem-let-rwsem_waiting_bias-represent-any-number-of-waiting-threads.patch rwsem-wake-queued-readers-when-writer-blocks-on-active-read-lock.patch rwsem-smaller-wrappers-around-rwsem_down_failed_common.patch mutex-subsystem-synchro-test-module.patch mutex-subsystem-synchro-test-module-add-missing-header-file.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html