mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 21:45:45 +02:00
drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init
[ Upstream commitc56de48309] of_parse_phandle() returns a node pointer with refcount incremented, we should use of_node_put() on it when not need anymore. a6xx_gmu_init() passes the node to of_find_device_by_node() and of_dma_configure(), of_find_device_by_node() will takes its reference, of_dma_configure() doesn't need the node after usage. Add missing of_node_put() to avoid refcount leak. Fixes:4b565ca5a2("drm/msm: Add A6XX device support") Signed-off-by: Miaoqian Lin <linmq006@gmail.com> Reviewed-by: Akhil P Oommen <quic_akhilpo@quicinc.com> Link: https://lore.kernel.org/r/20220512121955.56937-1-linmq006@gmail.com Signed-off-by: Rob Clark <robdclark@chromium.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
d54ac6ca48
commit
48e82ce8cd
|
|
@ -1308,6 +1308,7 @@ struct msm_gpu *a6xx_gpu_init(struct drm_device *dev)
|
||||||
BUG_ON(!node);
|
BUG_ON(!node);
|
||||||
|
|
||||||
ret = a6xx_gmu_init(a6xx_gpu, node);
|
ret = a6xx_gmu_init(a6xx_gpu, node);
|
||||||
|
of_node_put(node);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
a6xx_destroy(&(a6xx_gpu->base.base));
|
a6xx_destroy(&(a6xx_gpu->base.base));
|
||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user