mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
drm/sched: Cancel and flush all outstanding jobs before finish.
commit e582951baa upstream.
To avoid any possible use after free.
Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Link: https://patchwork.freedesktop.org/patch/414814/
CC: stable@vger.kernel.org
Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bdbee7d7fd
commit
a7cf5e4922
|
|
@ -890,6 +890,9 @@ void drm_sched_fini(struct drm_gpu_scheduler *sched)
|
|||
if (sched->thread)
|
||||
kthread_stop(sched->thread);
|
||||
|
||||
/* Confirm no work left behind accessing device structures */
|
||||
cancel_delayed_work_sync(&sched->work_tdr);
|
||||
|
||||
sched->ready = false;
|
||||
}
|
||||
EXPORT_SYMBOL(drm_sched_fini);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user