diff options
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 093beaa3900d..000b4a5d3219 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include "cifs_fs_sb.h" | 44 | #include "cifs_fs_sb.h" |
45 | #include <linux/mm.h> | 45 | #include <linux/mm.h> |
46 | #include <linux/key-type.h> | 46 | #include <linux/key-type.h> |
47 | #include "dns_resolve.h" | ||
47 | #include "cifs_spnego.h" | 48 | #include "cifs_spnego.h" |
48 | #define CIFS_MAGIC_NUMBER 0xFF534D42 /* the first four bytes of SMB PDUs */ | 49 | #define CIFS_MAGIC_NUMBER 0xFF534D42 /* the first four bytes of SMB PDUs */ |
49 | 50 | ||
@@ -1015,11 +1016,16 @@ init_cifs(void) | |||
1015 | if (rc) | 1016 | if (rc) |
1016 | goto out_unregister_filesystem; | 1017 | goto out_unregister_filesystem; |
1017 | #endif | 1018 | #endif |
1019 | #ifdef CONFIG_CIFS_DFS_UPCALL | ||
1020 | rc = register_key_type(&key_type_dns_resolver); | ||
1021 | if (rc) | ||
1022 | goto out_unregister_key_type; | ||
1023 | #endif | ||
1018 | oplockThread = kthread_run(cifs_oplock_thread, NULL, "cifsoplockd"); | 1024 | oplockThread = kthread_run(cifs_oplock_thread, NULL, "cifsoplockd"); |
1019 | if (IS_ERR(oplockThread)) { | 1025 | if (IS_ERR(oplockThread)) { |
1020 | rc = PTR_ERR(oplockThread); | 1026 | rc = PTR_ERR(oplockThread); |
1021 | cERROR(1, ("error %d create oplock thread", rc)); | 1027 | cERROR(1, ("error %d create oplock thread", rc)); |
1022 | goto out_unregister_key_type; | 1028 | goto out_unregister_dfs_key_type; |
1023 | } | 1029 | } |
1024 | 1030 | ||
1025 | dnotifyThread = kthread_run(cifs_dnotify_thread, NULL, "cifsdnotifyd"); | 1031 | dnotifyThread = kthread_run(cifs_dnotify_thread, NULL, "cifsdnotifyd"); |
@@ -1033,7 +1039,11 @@ init_cifs(void) | |||
1033 | 1039 | ||
1034 | out_stop_oplock_thread: | 1040 | out_stop_oplock_thread: |
1035 | kthread_stop(oplockThread); | 1041 | kthread_stop(oplockThread); |
1042 | out_unregister_dfs_key_type: | ||
1043 | #ifdef CONFIG_CIFS_DFS_UPCALL | ||
1044 | unregister_key_type(&key_type_dns_resolver); | ||
1036 | out_unregister_key_type: | 1045 | out_unregister_key_type: |
1046 | #endif | ||
1037 | #ifdef CONFIG_CIFS_UPCALL | 1047 | #ifdef CONFIG_CIFS_UPCALL |
1038 | unregister_key_type(&cifs_spnego_key_type); | 1048 | unregister_key_type(&cifs_spnego_key_type); |
1039 | out_unregister_filesystem: | 1049 | out_unregister_filesystem: |
@@ -1059,6 +1069,9 @@ exit_cifs(void) | |||
1059 | #ifdef CONFIG_PROC_FS | 1069 | #ifdef CONFIG_PROC_FS |
1060 | cifs_proc_clean(); | 1070 | cifs_proc_clean(); |
1061 | #endif | 1071 | #endif |
1072 | #ifdef CONFIG_CIFS_DFS_UPCALL | ||
1073 | unregister_key_type(&key_type_dns_resolver); | ||
1074 | #endif | ||
1062 | #ifdef CONFIG_CIFS_UPCALL | 1075 | #ifdef CONFIG_CIFS_UPCALL |
1063 | unregister_key_type(&cifs_spnego_key_type); | 1076 | unregister_key_type(&cifs_spnego_key_type); |
1064 | #endif | 1077 | #endif |