Commit aabf07ba authored by J. R. Okajima's avatar J. R. Okajima
Browse files

aufs: outro, module_exit



Although I am not sure module_exit is necessary for the statically
linked module, here is it.  I hope it does no harm.
Signed-off-by: default avatarJ. R. Okajima <hooanon05g@gmail.com>
parent 2216aee3
...@@ -241,4 +241,19 @@ out: ...@@ -241,4 +241,19 @@ out:
return err; return err;
} }
static void __exit aufs_exit(void)
{
unregister_filesystem(&aufs_fs_type);
au_cache_fin();
au_sysrq_fin();
au_hnotify_fin();
au_loopback_fin();
au_wkq_fin();
au_procfs_fin();
dbgaufs_fin();
sysaufs_fin();
au_dy_fin();
}
module_init(aufs_init); module_init(aufs_init);
module_exit(aufs_exit);
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment