Commit cbba2116 authored by Alexander Aring's avatar Alexander Aring Committed by David Teigland
Browse files

fs: dlm: unregister memory at the very last



The dlm modules midcomms, debugfs, lockspace, uses kmem caches. We
ensure that the kmem caches getting deallocated after those modules
exited.

Signed-off-by: default avatarAlexander Aring <aahringo@redhat.com>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent f68bb23c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,10 +73,10 @@ static void __exit exit_dlm(void)
	dlm_plock_exit();
	dlm_user_exit();
	dlm_config_exit();
	dlm_memory_exit();
	dlm_lockspace_exit();
	dlm_midcomms_exit();
	dlm_unregister_debugfs();
	dlm_memory_exit();
}

module_init(init_dlm);