All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: Fix debugfs entry leak in hci_register_dev()
@ 2021-10-13  8:55 Wei Yongjun
  2021-10-13  9:10 ` bluez.test.bot
  2021-10-13 12:29 ` [PATCH] " Marcel Holtmann
  0 siblings, 2 replies; 3+ messages in thread
From: Wei Yongjun @ 2021-10-13  8:55 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: Wei Yongjun, Marcel Holtmann, Johan Hedberg,
	Luiz Augusto von Dentz

Fault injection test report debugfs entry leak as follows:

debugfs: Directory 'hci0' with parent 'bluetooth' already present!

When register_pm_notifier() failed in hci_register_dev(), the debugfs
create by debugfs_create_dir() do not removed in the error handing path.

Add the remove debugfs code to fix it.

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>

diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 8a47a3017d61..cc48a8a9901c 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -3998,6 +3998,7 @@ int hci_register_dev(struct hci_dev *hdev)
 	return id;
 
 err_wqueue:
+	debugfs_remove_recursive(hdev->debugfs);
 	destroy_workqueue(hdev->workqueue);
 	destroy_workqueue(hdev->req_workqueue);
 err:
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-10-13 12:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-13  8:55 [PATCH] Bluetooth: Fix debugfs entry leak in hci_register_dev() Wei Yongjun
2021-10-13  9:10 ` bluez.test.bot
2021-10-13 12:29 ` [PATCH] " Marcel Holtmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.