]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
cifs: clean up ordering in exit_cifs
authorJeff Layton <jlayton@redhat.com>
Wed, 21 Mar 2012 10:27:55 +0000 (06:27 -0400)
committerSteve French <sfrench@us.ibm.com>
Wed, 21 Mar 2012 16:55:48 +0000 (11:55 -0500)
...ensure that we undo things in the reverse order from the way they
were done. In truth, the ordering doesn't matter for a lot of these,
but it's still better to do it that way to be sure.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/cifsfs.c

index 260025fd8c3b25a622f556fadeb20f4c2bb1b1ce..cc098ccac611821d078893ec1ca8faa95307a1e4 100644 (file)
@@ -1175,8 +1175,7 @@ static void __exit
 exit_cifs(void)
 {
        cFYI(DBG2, "exit_cifs");
-       cifs_proc_clean();
-       cifs_fscache_unregister();
+       unregister_filesystem(&cifs_fs_type);
        cifs_dfs_release_automount_timer();
 #ifdef CONFIG_CIFS_ACL
        cifs_destroy_idmaptrees();
@@ -1185,10 +1184,11 @@ exit_cifs(void)
 #ifdef CONFIG_CIFS_UPCALL
        unregister_key_type(&cifs_spnego_key_type);
 #endif
-       unregister_filesystem(&cifs_fs_type);
-       cifs_destroy_inodecache();
-       cifs_destroy_mids();
        cifs_destroy_request_bufs();
+       cifs_destroy_mids();
+       cifs_destroy_inodecache();
+       cifs_fscache_unregister();
+       cifs_proc_clean();
 }
 
 MODULE_AUTHOR("Steve French <sfrench@us.ibm.com>");