]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
Bluetooth: Fix debugfs entry leak in hci_register_dev()
authorWei Yongjun <weiyongjun1@huawei.com>
Wed, 13 Oct 2021 08:55:46 +0000 (16:55 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jan 2022 08:04:23 +0000 (09:04 +0100)
commitce9c5af63c013f268fa4ff5ef6c3822ac469fa61
tree9eb33f5133dcb48385a351af23ccb55befd14135
parent83738d8e0986889dc14d55ca292ffbc335b26cbf
Bluetooth: Fix debugfs entry leak in hci_register_dev()

[ Upstream commit 5a4bb6a8e981d3d0d492aa38412ee80b21033177 ]

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>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/bluetooth/hci_core.c