From: Andrey Grodzovsky <Andrey.Grodzovsky@amd.com>
To: christian.koenig@amd.com, Steven Price <steven.price@arm.com>
Cc: Emily.Deng@amd.com, amd-gfx@lists.freedesktop.org,
dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v3 1/2] drm/sched: Avoid job cleanup if sched thread is parked.
Date: Wed, 27 Nov 2019 10:32:53 -0500 [thread overview]
Message-ID: <b3835ff0-15f0-ead4-0255-3d93fc560c77@amd.com> (raw)
In-Reply-To: <cdd5de63-ca5a-19c1-0ef3-02916a2655d1@amd.com>
Ping...
Andrey
On 11/26/19 10:36 AM, Andrey Grodzovsky wrote:
>
> On 11/26/19 4:08 AM, Christian König wrote:
>> Am 25.11.19 um 17:51 schrieb Steven Price:
>>> On 25/11/2019 14:10, Andrey Grodzovsky wrote:
>>>> When the sched thread is parked we assume ring_mirror_list is
>>>> not accessed from here.
>>> FWIW I don't think this is necessary. kthread_park() will wait until
>>> the
>>> thread is parked, at which point the thread is stuck in
>>> kthread_parkme()
>>> until unparked.
>>>
>>> So all this does is avoid waiting for any cleanup jobs before parking -
>>> which might be a reasonable goal in itself, but if so lets at least
>>> document that.
>>
>> Now that you mention it that is indeed wrong.
>
>
> I wouldn't s call it wrong but superfluous in current code as indeed
> once the thread is parked there will be no subsequent calls to
> drm_sched_get_cleanup_job until the thread is unpacked back, if for
> example we decide to call drm_sched_get_cleanup_job from a work item
> which keeps scheduled it would be needed.
>
>
>>
>> The real problem is that in the main thread we mangled the call to
>> kthread_parkme() into drm_sched_blocked() which can be called in
>> atomic context.
>
>
> Where is the atomic context in wait_event_interruptible ? I seem no to
> see any.
>
> Andrey
>
>
>>
>> I suggest to rework this so that the kthread_should_park() and
>> kthread_should_stop() test in wait_event_interruptible() come first
>> and then call kthread_parkme() outside of the
>> wait_event_interruptible().
>>
>> Regards,
>> Christian.
>>
>>>
>>> Steve
>>>
>>>> Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com>
>>>> Reviewed-by: Christian König <christian.koenig@amd.com>
>>>> ---
>>>> drivers/gpu/drm/scheduler/sched_main.c | 10 +++++++---
>>>> 1 file changed, 7 insertions(+), 3 deletions(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/scheduler/sched_main.c
>>>> b/drivers/gpu/drm/scheduler/sched_main.c
>>>> index d4cc728..6774955 100644
>>>> --- a/drivers/gpu/drm/scheduler/sched_main.c
>>>> +++ b/drivers/gpu/drm/scheduler/sched_main.c
>>>> @@ -635,9 +635,13 @@ drm_sched_get_cleanup_job(struct
>>>> drm_gpu_scheduler *sched)
>>>> struct drm_sched_job *job;
>>>> unsigned long flags;
>>>> - /* Don't destroy jobs while the timeout worker is running */
>>>> - if (sched->timeout != MAX_SCHEDULE_TIMEOUT &&
>>>> - !cancel_delayed_work(&sched->work_tdr))
>>>> + /*
>>>> + * Don't destroy jobs while the timeout worker is running OR
>>>> thread
>>>> + * is being parked and hence assumed to not touch ring_mirror_list
>>>> + */
>>>> + if ((sched->timeout != MAX_SCHEDULE_TIMEOUT &&
>>>> + !cancel_delayed_work(&sched->work_tdr)) ||
>>>> + __kthread_should_park(sched->thread))
>>>> return NULL;
>>>> spin_lock_irqsave(&sched->job_list_lock, flags);
>>>>
>>> _______________________________________________
>>> amd-gfx mailing list
>>> amd-gfx@lists.freedesktop.org
>>> https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&data=02%7C01%7Candrey.grodzovsky%40amd.com%7Ce81a824a5f984f51bc1908d772503a25%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637103561221298691&sdata=tW9Xupt7ascVPOlHxH0pHGcbUArVyTa5VTle016AcGg%3D&reserved=0
>>>
>>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2019-11-27 15:32 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-25 14:10 [PATCH v3 1/2] drm/sched: Avoid job cleanup if sched thread is parked Andrey Grodzovsky
2019-11-25 14:10 ` Andrey Grodzovsky
2019-11-25 14:10 ` [PATCH v3 2/2] drm/scheduler: Avoid accessing freed bad job Andrey Grodzovsky
2019-11-25 14:10 ` Andrey Grodzovsky
[not found] ` <1574691041-5499-2-git-send-email-andrey.grodzovsky-5C7GfCeVMHo@public.gmane.org>
2019-11-25 16:57 ` Steven Price
2019-11-25 16:57 ` Steven Price
2019-11-25 16:51 ` [PATCH v3 1/2] drm/sched: Avoid job cleanup if sched thread is parked Steven Price
2019-11-26 9:08 ` Christian König
2019-11-26 15:36 ` Andrey Grodzovsky
2019-11-27 15:32 ` Andrey Grodzovsky [this message]
[not found] ` <b3835ff0-15f0-ead4-0255-3d93fc560c77-5C7GfCeVMHo@public.gmane.org>
2019-11-27 15:35 ` Christian König
2019-11-27 15:35 ` Christian König
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=b3835ff0-15f0-ead4-0255-3d93fc560c77@amd.com \
--to=andrey.grodzovsky@amd.com \
--cc=Emily.Deng@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=steven.price@arm.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