From: Neil Armstrong <narmstrong@baylibre.com>
To: Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
linux-amlogic@lists.infradead.org
Cc: dri-devel@lists.freedesktop.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] drm/meson: Fix error handling when afbcd.ops->init fails
Date: Mon, 3 Jan 2022 12:22:26 +0100 [thread overview]
Message-ID: <386f5be4-eca0-6117-82f5-317b82ee66a7@baylibre.com> (raw)
In-Reply-To: <20211230235515.1627522-3-martin.blumenstingl@googlemail.com>
On 31/12/2021 00:55, Martin Blumenstingl wrote:
> When afbcd.ops->init fails we need to free the struct drm_device. Also
> all errors which come after afbcd.ops->init was successful need to exit
> the AFBCD, just like meson_drv_unbind() does.
>
> Fixes: d1b5e41e13a7e9 ("drm/meson: Add AFBCD module driver")
> Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
> ---
> drivers/gpu/drm/meson/meson_drv.c | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/meson/meson_drv.c b/drivers/gpu/drm/meson/meson_drv.c
> index b919271a6e50..26aeaf0ab86e 100644
> --- a/drivers/gpu/drm/meson/meson_drv.c
> +++ b/drivers/gpu/drm/meson/meson_drv.c
> @@ -302,42 +302,42 @@ static int meson_drv_bind_master(struct device *dev, bool has_components)
> if (priv->afbcd.ops) {
> ret = priv->afbcd.ops->init(priv);
> if (ret)
> - return ret;
> + goto free_drm;
> }
>
> /* Encoder Initialization */
>
> ret = meson_encoder_cvbs_init(priv);
> if (ret)
> - goto free_drm;
> + goto exit_afbcd;
>
> if (has_components) {
> ret = component_bind_all(drm->dev, drm);
> if (ret) {
> dev_err(drm->dev, "Couldn't bind all components\n");
> - goto free_drm;
> + goto exit_afbcd;
> }
> }
>
> ret = meson_encoder_hdmi_init(priv);
> if (ret)
> - goto free_drm;
> + goto exit_afbcd;
>
> ret = meson_plane_create(priv);
> if (ret)
> - goto free_drm;
> + goto exit_afbcd;
>
> ret = meson_overlay_create(priv);
> if (ret)
> - goto free_drm;
> + goto exit_afbcd;
>
> ret = meson_crtc_create(priv);
> if (ret)
> - goto free_drm;
> + goto exit_afbcd;
>
> ret = request_irq(priv->vsync_irq, meson_irq, 0, drm->driver->name, drm);
> if (ret)
> - goto free_drm;
> + goto exit_afbcd;
>
> drm_mode_config_reset(drm);
>
> @@ -355,6 +355,9 @@ static int meson_drv_bind_master(struct device *dev, bool has_components)
>
> uninstall_irq:
> free_irq(priv->vsync_irq, drm);
> +exit_afbcd:
> + if (priv->afbcd.ops)
> + priv->afbcd.ops->exit(priv);
> free_drm:
> drm_dev_put(drm);
>
>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Thanks,
But this depends on patch 1, so I'll add the same Fixes tag on patch 1 and add to drm-misc-next so it won't pollute -fixes but will still be eventually be backported when landing on linus master.
Neil
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
prev parent reply other threads:[~2022-01-03 11:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-30 23:55 [PATCH 0/2] drm/meson: Error handling fix when AFBCD is used Martin Blumenstingl
2021-12-30 23:55 ` [PATCH 1/2] drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops Martin Blumenstingl
2022-01-03 11:24 ` Neil Armstrong
2021-12-30 23:55 ` [PATCH 2/2] drm/meson: Fix error handling when afbcd.ops->init fails Martin Blumenstingl
2022-01-03 11:22 ` Neil Armstrong [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=386f5be4-eca0-6117-82f5-317b82ee66a7@baylibre.com \
--to=narmstrong@baylibre.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®