]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-client.git/commitdiff
mmc: mmci: Fix device_node reference leak in of_get_dml_pipe_index()
authorFelix Gu <ustc.gu@gmail.com>
Tue, 20 Jan 2026 14:26:46 +0000 (22:26 +0800)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 23 Feb 2026 11:05:20 +0000 (12:05 +0100)
When calling of_parse_phandle_with_args(), the caller is responsible
to call of_node_put() to release the reference of device node.
In of_get_dml_pipe_index(), it does not release the reference.

Fixes: 9cb15142d0e3 ("mmc: mmci: Add qcom dml support to the driver.")
Signed-off-by: Felix Gu <gu_0233@qq.com>
Cc: stable@vger.kernel.org
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/mmci_qcom_dml.c

index 3da6112fbe39dbb02200f74b4fe8dccba55644e2..67371389cc33119ad9a8bdbe2751238c78aabe48 100644 (file)
@@ -109,6 +109,7 @@ static int of_get_dml_pipe_index(struct device_node *np, const char *name)
                                       &dma_spec))
                return -ENODEV;
 
+       of_node_put(dma_spec.np);
        if (dma_spec.args_count)
                return dma_spec.args[0];