dect
/
linux-2.6
Archived
13
0
Fork 0

Staging: batman-adv: fix early debugfs deinitialization

The debugfs files are initialized at load time only but would get
deinitialized when the module changed in it deactivate (sleeping)
state. As a consequence the debugfs files are not accessible
anymore.

Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Sven Eckelmann <sven.eckelmann@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Marek Lindner 2010-06-26 00:28:25 +02:00 committed by Greg Kroah-Hartman
parent 62c2072003
commit 08f20b5e07
1 changed files with 1 additions and 1 deletions

View File

@ -148,6 +148,7 @@ void cleanup_module(void)
{
deactivate_module();
debugfs_destroy();
unregister_netdevice_notifier(&hard_if_notifier);
hardif_remove_interfaces();
@ -212,7 +213,6 @@ void deactivate_module(void)
hna_global_free();
synchronize_net();
debugfs_destroy();
synchronize_rcu();
atomic_set(&module_state, MODULE_INACTIVE);