diff mbox series

PCI: fix double put_device() in error case in pci_create_root_bus()

Message ID 20221018035134.2016891-1-yangyingliang@huawei.com
State New
Headers show
Series PCI: fix double put_device() in error case in pci_create_root_bus() | expand

Commit Message

Yang Yingliang Oct. 18, 2022, 3:51 a.m. UTC
If device_add() fails in pci_register_host_bridge(), the bridge device will
be put once, and it will be put again in error path of pci_create_root_bus().
Fix this by removing put_device() after device_add() is failed.

Fixes: 37d6a0a6f470 ("PCI: Add pci_register_host_bridge() interface")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 drivers/pci/probe.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

Comments

Thierry Reding Oct. 18, 2022, 10:38 a.m. UTC | #1
On Tue, Oct 18, 2022 at 11:51:34AM +0800, Yang Yingliang wrote:
> If device_add() fails in pci_register_host_bridge(), the bridge device will
> be put once, and it will be put again in error path of pci_create_root_bus().
> Fix this by removing put_device() after device_add() is failed.
> 
> Fixes: 37d6a0a6f470 ("PCI: Add pci_register_host_bridge() interface")
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> ---
>  drivers/pci/probe.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)

Seems fine. All callers, as far as I can tell, of this end up invoking
pci_free_host_bridge() which does the corresponding put_device() itself:

Reviewed-by: Thierry Reding <treding@nvidia.com>
Yang Yingliang Nov. 23, 2022, 7:42 a.m. UTC | #2
Hi Helgaas,

On 2022/10/18 18:38, Thierry Reding wrote:
> On Tue, Oct 18, 2022 at 11:51:34AM +0800, Yang Yingliang wrote:
>> If device_add() fails in pci_register_host_bridge(), the bridge device will
>> be put once, and it will be put again in error path of pci_create_root_bus().
>> Fix this by removing put_device() after device_add() is failed.
I think it's a obvious problem.
Is this patch look good to you or any suggestion?

Thanks,
Yang
>>
>> Fixes: 37d6a0a6f470 ("PCI: Add pci_register_host_bridge() interface")
>> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
>> ---
>>   drivers/pci/probe.c | 4 +---
>>   1 file changed, 1 insertion(+), 3 deletions(-)
> Seems fine. All callers, as far as I can tell, of this end up invoking
> pci_free_host_bridge() which does the corresponding put_device() itself:
>
> Reviewed-by: Thierry Reding <treding@nvidia.com>
diff mbox series

Patch

diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index b66fa42c4b1f..f61754d76aa7 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -926,10 +926,8 @@  static int pci_register_host_bridge(struct pci_host_bridge *bridge)
 	/* Temporarily move resources off the list */
 	list_splice_init(&bridge->windows, &resources);
 	err = device_add(&bridge->dev);
-	if (err) {
-		put_device(&bridge->dev);
+	if (err)
 		goto free;
-	}
 	bus->bridge = get_device(&bridge->dev);
 	device_enable_async_suspend(bus->bridge);
 	pci_set_bus_of_node(bus);