aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/files/0662-drm-amdgpu-fix-stoping-the-scheduler-timeout.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/files/0662-drm-amdgpu-fix-stoping-the-scheduler-timeout.patch')
-rw-r--r--common/recipes-kernel/linux/files/0662-drm-amdgpu-fix-stoping-the-scheduler-timeout.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/common/recipes-kernel/linux/files/0662-drm-amdgpu-fix-stoping-the-scheduler-timeout.patch b/common/recipes-kernel/linux/files/0662-drm-amdgpu-fix-stoping-the-scheduler-timeout.patch
deleted file mode 100644
index 05f082f4..00000000
--- a/common/recipes-kernel/linux/files/0662-drm-amdgpu-fix-stoping-the-scheduler-timeout.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 424839a6a913f2d2f473ce6d5b6465aeddf694db Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Christian=20K=C3=B6nig?= <christian.koenig@amd.com>
-Date: Mon, 2 Nov 2015 16:25:10 +0100
-Subject: [PATCH 0662/1565] drm/amdgpu: fix stoping the scheduler timeout
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-cancel_delayed_work_sync is forbidden in interrupt context.
-
-Signed-off-by: Christian König <christian.koenig@amd.com>
-Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
-Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
----
- drivers/gpu/drm/amd/scheduler/gpu_scheduler.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c b/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c
-index b3e84d0..89619a5 100644
---- a/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c
-+++ b/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c
-@@ -338,7 +338,7 @@ static void amd_sched_process_job(struct fence *f, struct fence_cb *cb)
- atomic_dec(&sched->hw_rq_count);
- amd_sched_fence_signal(s_fence);
- if (sched->timeout != MAX_SCHEDULE_TIMEOUT) {
-- cancel_delayed_work_sync(&s_fence->dwork);
-+ cancel_delayed_work(&s_fence->dwork);
- spin_lock_irqsave(&sched->fence_list_lock, flags);
- list_del_init(&s_fence->list);
- spin_unlock_irqrestore(&sched->fence_list_lock, flags);
---
-1.9.1
-