Skip to content

Commit

Permalink
firmware: raspberrypi: Fix a leak in 'rpi_firmware_get()'
Browse files Browse the repository at this point in the history
[ Upstream commit 09cbd1d ]

The reference taken by 'of_find_device_by_node()' must be released when
not needed anymore.

Add the corresponding 'put_device()' in the normal and error handling
paths.

Fixes: 4e3d606 ("ARM: bcm2835: Add the Raspberry Pi firmware driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/5e17e5409b934cd08bf6f9279c73be5c1cb11cce.1628232242.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
tititiou36 authored and gregkh committed Sep 15, 2021
1 parent b4c7647 commit 40c1cc3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions drivers/firmware/raspberrypi.c
Expand Up @@ -329,12 +329,18 @@ struct rpi_firmware *rpi_firmware_get(struct device_node *firmware_node)

fw = platform_get_drvdata(pdev);
if (!fw)
return NULL;
goto err_put_device;

if (!kref_get_unless_zero(&fw->consumers))
return NULL;
goto err_put_device;

put_device(&pdev->dev);

return fw;

err_put_device:
put_device(&pdev->dev);
return NULL;
}
EXPORT_SYMBOL_GPL(rpi_firmware_get);

Expand Down

0 comments on commit 40c1cc3

Please sign in to comment.