mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
rpmsg: core: Clean up resources on announce_create failure.
During the rpmsg_dev_probe, if rpdev->ops->announce_create returns an
error, the rpmsg device and default endpoint should be freed before
exiting the function.
Fixes: 5e619b4867
("rpmsg: Split rpmsg core and virtio backend")
Suggested-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Cc: stable <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20211206190758.10004-1-arnaud.pouliquen@foss.st.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
This commit is contained in:
parent
631af6e0f4
commit
8066c615cb
@ -540,13 +540,25 @@ static int rpmsg_dev_probe(struct device *dev)
|
||||
err = rpdrv->probe(rpdev);
|
||||
if (err) {
|
||||
dev_err(dev, "%s: failed: %d\n", __func__, err);
|
||||
if (ept)
|
||||
rpmsg_destroy_ept(ept);
|
||||
goto out;
|
||||
goto destroy_ept;
|
||||
}
|
||||
|
||||
if (ept && rpdev->ops->announce_create)
|
||||
if (ept && rpdev->ops->announce_create) {
|
||||
err = rpdev->ops->announce_create(rpdev);
|
||||
if (err) {
|
||||
dev_err(dev, "failed to announce creation\n");
|
||||
goto remove_rpdev;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
remove_rpdev:
|
||||
if (rpdrv->remove)
|
||||
rpdrv->remove(rpdev);
|
||||
destroy_ept:
|
||||
if (ept)
|
||||
rpmsg_destroy_ept(ept);
|
||||
out:
|
||||
return err;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user