[AMD Official Use Only - Internal Distribution Only] It's all good. I pushed a copy to amd-staging-drm-next, reviewed by Andrey. Thanks for pushing it to drm-misc-fixes!
Kent > -----Original Message----- > From: Koenig, Christian <[email protected]> > Sent: Wednesday, April 15, 2020 6:36 AM > To: Grodzovsky, Andrey <[email protected]>; Russell, Kent > <[email protected]>; [email protected] > Subject: Re: [PATCH] drm/scheduler: fix drm_sched_get_cleanup_job > > Sorry for the holiday/vacation/COVID-19 delay. I've just pushed this patch > into > drm-misc-fixes. > > I assume it already landed in our internal branches? > > Thanks, > Christian. > > Am 14.04.20 um 16:33 schrieb Andrey Grodzovsky: > > Reviewed-by: Andrey Grodzovsky <[email protected]> > > > > Andrey > > > > On 4/14/20 10:22 AM, Kent Russell wrote: > >> From: Christian König <[email protected]> > >> > >> We are racing to initialize sched->thread here, just always check the > >> current thread. > >> > >> Signed-off-by: Christian Koenig <[email protected]> > >> Reviewed-by: Kent Russell <[email protected]> > >> --- > >> drivers/gpu/drm/scheduler/sched_main.c | 2 +- > >> 1 file changed, 1 insertion(+), 1 deletion(-) > >> > >> diff --git a/drivers/gpu/drm/scheduler/sched_main.c > >> b/drivers/gpu/drm/scheduler/sched_main.c > >> index 8e731ed0d9d9..2f319102ae9f 100644 > >> --- a/drivers/gpu/drm/scheduler/sched_main.c > >> +++ b/drivers/gpu/drm/scheduler/sched_main.c > >> @@ -676,7 +676,7 @@ drm_sched_get_cleanup_job(struct > >> drm_gpu_scheduler *sched) > >> */ > >> if ((sched->timeout != MAX_SCHEDULE_TIMEOUT && > >> !cancel_delayed_work(&sched->work_tdr)) || > >> - __kthread_should_park(sched->thread)) > >> + kthread_should_park()) > >> return NULL; > >> spin_lock(&sched->job_list_lock); _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx
