]> git.baikalelectronics.ru Git - kernel.git/commit
NTB: ntb_transport: fix debugfs_remove_recursive
authorAllen Hubbe <Allen.Hubbe@dell.com>
Tue, 27 Dec 2016 22:57:04 +0000 (17:57 -0500)
committerJon Mason <jdmason@kudzu.us>
Fri, 17 Feb 2017 04:10:52 +0000 (23:10 -0500)
commite20efaced4f8a2ba3f341afc3172cc2fc0808600
tree67c4fd16a0892c5043de198ceed6d4299a78011a
parentb915d943c6a4caa9247bf5fa13354dc3d4a74d26
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: ceb875122 ("NTB: Split ntb_hw_intel and ntb_transport drivers")
Signed-off-by: Jon Mason <jdmason@kudzu.us>
drivers/ntb/ntb_transport.c