Security Advisory

CVE-2022-49462

CVE vulnerability detail — eXtreme Datacenter Security Operations

Published 2025-02-26 02:13:09
Last updated 2026-05-11 19:00:21
Assigner Linux
State PUBLISHED

Description

In the Linux kernel, the following vulnerability has been resolved: drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init 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() doesnt need the node after usage. Add missing of_node_put() to avoid refcount leak.