]> git.baikalelectronics.ru Git - kernel.git/commit
drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors()
authorLiang He <windhl@126.com>
Tue, 26 Jul 2022 01:07:22 +0000 (09:07 +0800)
committerNeil Armstrong <narmstrong@baylibre.com>
Mon, 8 Aug 2022 07:46:22 +0000 (09:46 +0200)
commitd04de01b716932f0c7c38a4a8c16250a160cf9d8
tree6f46b3b202df5904035527d54c46daad990e7b4b
parentf094522b60cf7ac691441d9156525defb73eb7fc
drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors()

In this function, there are two refcount leak bugs:
(1) when breaking out of for_each_endpoint_of_node(), we need call
the of_node_put() for the 'ep';
(2) we should call of_node_put() for the reference returned by
of_graph_get_remote_port() when it is not used anymore.

Fixes: e5a2f708e761 ("drm: Add support for Amlogic Meson Graphic Controller")
Signed-off-by: Liang He <windhl@126.com>
Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220726010722.1319416-1-windhl@126.com
drivers/gpu/drm/meson/meson_drv.c