summaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsfs.c
diff options
context:
space:
mode:
authorJeff Layton2012-03-21 11:27:55 +0100
committerSteve French2012-03-21 17:55:48 +0100
commit3dd933061d3a4f33fb6ba1616e88fa55a8b8cb9c (patch)
tree3bd8ecc805ed40af32ba71f6b59baece59337ba7 /fs/cifs/cifsfs.c
parentcifs: clean up call to cifs_dfs_release_automount_timer() (diff)
downloadkernel-qcow2-linux-3dd933061d3a4f33fb6ba1616e88fa55a8b8cb9c.tar.gz
kernel-qcow2-linux-3dd933061d3a4f33fb6ba1616e88fa55a8b8cb9c.tar.xz
kernel-qcow2-linux-3dd933061d3a4f33fb6ba1616e88fa55a8b8cb9c.zip
cifs: clean up ordering in exit_cifs
...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>
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r--fs/cifs/cifsfs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index 260025fd8c3b..cc098ccac611 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -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>");