mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-13 05:54:23 +08:00
NTB: ntb_transport: fix debugfs_remove_recursive
The call to debugfs_remove_recursive(qp->debugfs_dir) of the sub-level
directory must not be later than
debugfs_remove_recursive(nt_debugfs_dir) of the top-level directory.
Otherwise, the sub-level directory will not exist, and it would be
invalid (panic) to attempt to remove it. This removes the top-level
directory last, after sub-level directories have been cleaned up.
Signed-off-by: Allen Hubbe <Allen.Hubbe@dell.com>
Fixes: e26a5843f
("NTB: Split ntb_hw_intel and ntb_transport drivers")
Signed-off-by: Jon Mason <jdmason@kudzu.us>
This commit is contained in:
parent
7089db84e3
commit
dd62245e73
@ -2273,9 +2273,8 @@ module_init(ntb_transport_init);
|
|||||||
|
|
||||||
static void __exit ntb_transport_exit(void)
|
static void __exit ntb_transport_exit(void)
|
||||||
{
|
{
|
||||||
debugfs_remove_recursive(nt_debugfs_dir);
|
|
||||||
|
|
||||||
ntb_unregister_client(&ntb_transport_client);
|
ntb_unregister_client(&ntb_transport_client);
|
||||||
bus_unregister(&ntb_transport_bus);
|
bus_unregister(&ntb_transport_bus);
|
||||||
|
debugfs_remove_recursive(nt_debugfs_dir);
|
||||||
}
|
}
|
||||||
module_exit(ntb_transport_exit);
|
module_exit(ntb_transport_exit);
|
||||||
|
Loading…
Reference in New Issue
Block a user