mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-25 00:52:45 -04:00
drm/sched: add drm_sched_fault
Add a helper to immediately start timeout handling in case of a hardware fault. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
19067e522d
commit
8fe159b014
@@ -196,6 +196,19 @@ static void drm_sched_start_timeout(struct drm_gpu_scheduler *sched)
|
||||
schedule_delayed_work(&sched->work_tdr, sched->timeout);
|
||||
}
|
||||
|
||||
/**
|
||||
* drm_sched_fault - immediately start timeout handler
|
||||
*
|
||||
* @sched: scheduler where the timeout handling should be started.
|
||||
*
|
||||
* Start timeout handling immediately when the driver detects a hardware fault.
|
||||
*/
|
||||
void drm_sched_fault(struct drm_gpu_scheduler *sched)
|
||||
{
|
||||
mod_delayed_work(system_wq, &sched->work_tdr, 0);
|
||||
}
|
||||
EXPORT_SYMBOL(drm_sched_fault);
|
||||
|
||||
/* job_finish is called after hw fence signaled
|
||||
*/
|
||||
static void drm_sched_job_finish(struct work_struct *work)
|
||||
|
||||
Reference in New Issue
Block a user