aboutsummaryrefslogtreecommitdiffstats
path: root/meta-v1000/recipes-kernel/linux/linux-yocto-4.14.71/1600-drm-amdkfd-Fix-a-dead-lock-problem-in-memory-evictio.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-v1000/recipes-kernel/linux/linux-yocto-4.14.71/1600-drm-amdkfd-Fix-a-dead-lock-problem-in-memory-evictio.patch')
-rw-r--r--meta-v1000/recipes-kernel/linux/linux-yocto-4.14.71/1600-drm-amdkfd-Fix-a-dead-lock-problem-in-memory-evictio.patch72
1 files changed, 0 insertions, 72 deletions
diff --git a/meta-v1000/recipes-kernel/linux/linux-yocto-4.14.71/1600-drm-amdkfd-Fix-a-dead-lock-problem-in-memory-evictio.patch b/meta-v1000/recipes-kernel/linux/linux-yocto-4.14.71/1600-drm-amdkfd-Fix-a-dead-lock-problem-in-memory-evictio.patch
deleted file mode 100644
index ceab4f2b..00000000
--- a/meta-v1000/recipes-kernel/linux/linux-yocto-4.14.71/1600-drm-amdkfd-Fix-a-dead-lock-problem-in-memory-evictio.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-From 6497c14bb4f0284e6c630b81ad7e5d8c5613d2db Mon Sep 17 00:00:00 2001
-From: Yong Zhao <yong.zhao@amd.com>
-Date: Mon, 19 Dec 2016 16:23:32 -0500
-Subject: [PATCH 1600/4131] drm/amdkfd: Fix a dead lock problem in memory
- eviction
-
-In kfd_restore_bo_worker(), we should not call
-kfd_schedule_restore_bos_and_queues(), which in turn call
-cancel_delayed_work_sync(), because a workqueue thread can not call
-cancel_delayed_work_sync() to cancel itself.
-
-Change-Id: I703cda5b27b2f2f7375b12fdbd910e54bd01546c
-Signed-off-by: Yong Zhao <yong.zhao@amd.com>
----
- drivers/gpu/drm/amd/amdkfd/kfd_device.c | 27 ++++++---------------------
- 1 file changed, 6 insertions(+), 21 deletions(-)
-
-diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device.c b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
-index 46a722f..5bf868f 100644
---- a/drivers/gpu/drm/amd/amdkfd/kfd_device.c
-+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
-@@ -774,25 +774,6 @@ static int resume_process_mm(struct kfd_process *p)
- return ret;
- }
-
--/** kfd_schedule_restore_bos_and_queues - Schedules work queue that will
-- * restore all BOs that belong to given process and then restore its queues
-- *
-- * @mm: mm_struct that identifies the KFD process
-- *
-- */
--static int kfd_schedule_restore_bos_and_queues(struct kfd_process *p)
--{
-- if (delayed_work_pending(&p->restore_work)) {
-- WARN(1, "Trying to evict an unrestored process\n");
-- cancel_delayed_work_sync(&p->restore_work);
-- }
--
-- /* During process initialization restore_work is initialized
-- * to kfd_restore_bo_worker
-- */
-- schedule_delayed_work(&p->restore_work, PROCESS_RESTORE_TIME_MS);
-- return 0;
--}
-
- void kfd_restore_bo_worker(struct work_struct *work)
- {
-@@ -821,7 +802,10 @@ void kfd_restore_bo_worker(struct work_struct *work)
-
- ret = pdd->dev->kfd2kgd->restore_process_bos(p->process_info);
- if (ret) {
-- kfd_schedule_restore_bos_and_queues(p);
-+ pr_info("restore_process_bos() failed, try again after 1 sec\n");
-+ ret = schedule_delayed_work(&p->restore_work,
-+ PROCESS_BACK_OFF_TIME_MS);
-+ WARN(!ret, "reschedule restore work failed\n");
- return;
- }
-
-@@ -902,7 +886,8 @@ void kfd_evict_bo_worker(struct work_struct *work)
- ret = quiesce_process_mm(p);
- if (!ret) {
- fence_signal(eviction_work->eviction_fence);
-- kfd_schedule_restore_bos_and_queues(p);
-+ schedule_delayed_work(&p->restore_work,
-+ PROCESS_RESTORE_TIME_MS);
- } else
- pr_err("Failed to quiesce user queues. Cannot evict BOs\n");
-
---
-2.7.4
-