From: Sean Paul <sean-p7yTbzM4H96eqtR555YLDQ@public.gmane.org>
To: Jeykumar Sankaran <jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Cc: linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org,
robdclark-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org,
abhinavk-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
hoegsberg-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
freedreno-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org,
dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org
Subject: Re: [PATCH v4] drm/msm: validate display and event threads
Date: Thu, 11 Oct 2018 11:17:13 -0400 [thread overview]
Message-ID: <20181011151713.GC154175@art_vandelay> (raw)
In-Reply-To: <1539205876-23732-1-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
On Wed, Oct 10, 2018 at 02:11:16PM -0700, Jeykumar Sankaran wrote:
> While creating display and event threads per crtc, validate
> them before setting their priorities.
>
> changes in v2:
> - use dev_warn (Abhinav Kumar)
> changes in v3:
> - fix compilation error
> changes in v4:
> - Remove Change-Id (Sean Paul)
> - Keep logging within 80 char limit (Sean Paul)
>
> Signed-off-by: Jeykumar Sankaran <jsanka@codeaurora.org>
Reviewed-by: Sean Paul <seanpaul@chromium.org>
I'll push to dpu-staging
Thanks!
Sean
> ---
> drivers/gpu/drm/msm/msm_drv.c | 49 ++++++++++++++-----------------------------
> 1 file changed, 16 insertions(+), 33 deletions(-)
>
> diff --git a/drivers/gpu/drm/msm/msm_drv.c b/drivers/gpu/drm/msm/msm_drv.c
> index 4904d0d..dcff812 100644
> --- a/drivers/gpu/drm/msm/msm_drv.c
> +++ b/drivers/gpu/drm/msm/msm_drv.c
> @@ -553,17 +553,18 @@ static int msm_drm_init(struct device *dev, struct drm_driver *drv)
> kthread_run(kthread_worker_fn,
> &priv->disp_thread[i].worker,
> "crtc_commit:%d", priv->disp_thread[i].crtc_id);
> - ret = sched_setscheduler(priv->disp_thread[i].thread,
> - SCHED_FIFO, ¶m);
> - if (ret)
> - pr_warn("display thread priority update failed: %d\n",
> - ret);
> -
> if (IS_ERR(priv->disp_thread[i].thread)) {
> dev_err(dev, "failed to create crtc_commit kthread\n");
> priv->disp_thread[i].thread = NULL;
> + goto err_msm_uninit;
> }
>
> + ret = sched_setscheduler(priv->disp_thread[i].thread,
> + SCHED_FIFO, ¶m);
> + if (ret)
> + dev_warn(dev, "disp_thread set priority failed: %d\n",
> + ret);
> +
> /* initialize event thread */
> priv->event_thread[i].crtc_id = priv->crtcs[i]->base.id;
> kthread_init_worker(&priv->event_thread[i].worker);
> @@ -572,6 +573,12 @@ static int msm_drm_init(struct device *dev, struct drm_driver *drv)
> kthread_run(kthread_worker_fn,
> &priv->event_thread[i].worker,
> "crtc_event:%d", priv->event_thread[i].crtc_id);
> + if (IS_ERR(priv->event_thread[i].thread)) {
> + dev_err(dev, "failed to create crtc_event kthread\n");
> + priv->event_thread[i].thread = NULL;
> + goto err_msm_uninit;
> + }
> +
> /**
> * event thread should also run at same priority as disp_thread
> * because it is handling frame_done events. A lower priority
> @@ -580,34 +587,10 @@ static int msm_drm_init(struct device *dev, struct drm_driver *drv)
> * failure at crtc commit level.
> */
> ret = sched_setscheduler(priv->event_thread[i].thread,
> - SCHED_FIFO, ¶m);
> + SCHED_FIFO, ¶m);
> if (ret)
> - pr_warn("display event thread priority update failed: %d\n",
> - ret);
> -
> - if (IS_ERR(priv->event_thread[i].thread)) {
> - dev_err(dev, "failed to create crtc_event kthread\n");
> - priv->event_thread[i].thread = NULL;
> - }
> -
> - if ((!priv->disp_thread[i].thread) ||
> - !priv->event_thread[i].thread) {
> - /* clean up previously created threads if any */
> - for ( ; i >= 0; i--) {
> - if (priv->disp_thread[i].thread) {
> - kthread_stop(
> - priv->disp_thread[i].thread);
> - priv->disp_thread[i].thread = NULL;
> - }
> -
> - if (priv->event_thread[i].thread) {
> - kthread_stop(
> - priv->event_thread[i].thread);
> - priv->event_thread[i].thread = NULL;
> - }
> - }
> - goto err_msm_uninit;
> - }
> + dev_warn(dev, "event_thread set priority failed:%d\n",
> + ret);
> }
>
> ret = drm_vblank_init(ddev, priv->num_crtcs);
> --
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> a Linux Foundation Collaborative Project
>
--
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
Freedreno mailing list
Freedreno@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/freedreno
prev parent reply other threads:[~2018-10-11 15:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-10 21:11 [PATCH v4] drm/msm: validate display and event threads Jeykumar Sankaran
[not found] ` <1539205876-23732-1-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-11 15:17 ` Sean Paul [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=20181011151713.GC154175@art_vandelay \
--to=sean-p7ytbzm4h96eqtr555yldq@public.gmane.org \
--cc=abhinavk-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
--cc=dan.carpenter-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
--cc=dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=freedreno-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=hoegsberg-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
--cc=jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
--cc=linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=robdclark-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
/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