Commit 08f20b5e authored by Marek Lindner's avatar Marek Lindner Committed by Greg Kroah-Hartman

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: default avatarMarek Lindner <lindner_marek@yahoo.de>
Signed-off-by: default avatarSven Eckelmann <sven.eckelmann@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 62c20720
...@@ -148,6 +148,7 @@ void cleanup_module(void) ...@@ -148,6 +148,7 @@ void cleanup_module(void)
{ {
deactivate_module(); deactivate_module();
debugfs_destroy();
unregister_netdevice_notifier(&hard_if_notifier); unregister_netdevice_notifier(&hard_if_notifier);
hardif_remove_interfaces(); hardif_remove_interfaces();
...@@ -212,7 +213,6 @@ void deactivate_module(void) ...@@ -212,7 +213,6 @@ void deactivate_module(void)
hna_global_free(); hna_global_free();
synchronize_net(); synchronize_net();
debugfs_destroy();
synchronize_rcu(); synchronize_rcu();
atomic_set(&module_state, MODULE_INACTIVE); atomic_set(&module_state, MODULE_INACTIVE);
......
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