]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
remoteproc: k3: Correctly release some resources allocated in k3_rproc_request_mbox()
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 24 Aug 2025 19:52:37 +0000 (21:52 +0200)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Fri, 29 Aug 2025 16:09:52 +0000 (10:09 -0600)
If an error occurs after a successful k3_rproc_request_mbox() call,
mbox_free_channel() should be called to avoid a leak.

Such a call is missing in the error handling path of k3_dsp_rproc_probe().
It is also missing both in the error handling path of k3_m4_rproc_probe()
and in the (in-existent) corresponding remove function.

Switch to managed resources to avoid these leaks and simplify the code.
Remove the now unneeded mbox_free_channel().

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Beleswar Padhi <b-padhi@ti.com>
Tested-by: Beleswar Padhi <b-padhi@ti.com>
Link: https://lore.kernel.org/r/df853ede72e9972c464415990b196289680e6acb.1756065142.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
drivers/remoteproc/ti_k3_common.c
drivers/remoteproc/ti_k3_dsp_remoteproc.c
drivers/remoteproc/ti_k3_r5_remoteproc.c

index 8266e11914af87ac38977763099521dee4334348..56b71652e449f28d01e0ad43dbaf63d82ed4f7bd 100644 (file)
@@ -155,11 +155,19 @@ int k3_rproc_release(struct k3_rproc *kproc)
 }
 EXPORT_SYMBOL_GPL(k3_rproc_release);
 
+static void k3_rproc_free_channel(void *data)
+{
+       struct k3_rproc *kproc = data;
+
+       mbox_free_channel(kproc->mbox);
+}
+
 int k3_rproc_request_mbox(struct rproc *rproc)
 {
        struct k3_rproc *kproc = rproc->priv;
        struct mbox_client *client = &kproc->client;
        struct device *dev = kproc->dev;
+       int ret;
 
        client->dev = dev;
        client->tx_done = NULL;
@@ -172,6 +180,10 @@ int k3_rproc_request_mbox(struct rproc *rproc)
                return dev_err_probe(dev, PTR_ERR(kproc->mbox),
                                     "mbox_request_channel failed\n");
 
+       ret = devm_add_action_or_reset(dev, k3_rproc_free_channel, kproc);
+       if (ret)
+               return ret;
+
        return 0;
 }
 EXPORT_SYMBOL_GPL(k3_rproc_request_mbox);
index 7a72933bd403b439d73be4736042b24343796f3c..d6ceea6dc920edb34fc4551ef7ebaebe6be7ede5 100644 (file)
@@ -175,8 +175,6 @@ static void k3_dsp_rproc_remove(struct platform_device *pdev)
                if (ret)
                        dev_err(dev, "failed to detach proc (%pe)\n", ERR_PTR(ret));
        }
-
-       mbox_free_channel(kproc->mbox);
 }
 
 static const struct k3_rproc_mem_data c66_mems[] = {
index ca5ff280d2dc2d5dd6976ec38233f586c9200bbe..04f23295ffc1066b3529f88f9ac4be7cc3307116 100644 (file)
@@ -1206,8 +1206,6 @@ static void k3_r5_cluster_rproc_exit(void *data)
                                return;
                        }
                }
-
-               mbox_free_channel(kproc->mbox);
        }
 }