Whoops, fix a minor proc issue which slipped through with

the recent changes.  Ensure the top level spl is removed.


git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@125 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
This commit is contained in:
behlendo 2008-06-04 06:09:16 +00:00
parent c30df9c863
commit a02118a89d
1 changed files with 2 additions and 0 deletions

View File

@ -915,6 +915,7 @@ out:
remove_proc_entry("kmem", proc_spl); remove_proc_entry("kmem", proc_spl);
remove_proc_entry("stats_per", proc_spl_mutex); remove_proc_entry("stats_per", proc_spl_mutex);
remove_proc_entry("mutex", proc_spl); remove_proc_entry("mutex", proc_spl);
remove_proc_entry("spl", NULL);
#ifdef CONFIG_SYSCTL #ifdef CONFIG_SYSCTL
spl_unregister_sysctl_table(spl_header); spl_unregister_sysctl_table(spl_header);
#endif /* CONFIG_SYSCTL */ #endif /* CONFIG_SYSCTL */
@ -934,6 +935,7 @@ proc_fini(void)
remove_proc_entry("kmem", proc_spl); remove_proc_entry("kmem", proc_spl);
remove_proc_entry("stats_per", proc_spl_mutex); remove_proc_entry("stats_per", proc_spl_mutex);
remove_proc_entry("mutex", proc_spl); remove_proc_entry("mutex", proc_spl);
remove_proc_entry("spl", NULL);
#endif /* DEBUG_MUTEX || DEBUG_KMEM || DEBUG_KSTAT */ #endif /* DEBUG_MUTEX || DEBUG_KMEM || DEBUG_KSTAT */
#ifdef CONFIG_SYSCTL #ifdef CONFIG_SYSCTL