aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/files/0663-drm-amdgpu-fix-fence-fallback-check.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/files/0663-drm-amdgpu-fix-fence-fallback-check.patch')
-rw-r--r--common/recipes-kernel/linux/files/0663-drm-amdgpu-fix-fence-fallback-check.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/common/recipes-kernel/linux/files/0663-drm-amdgpu-fix-fence-fallback-check.patch b/common/recipes-kernel/linux/files/0663-drm-amdgpu-fix-fence-fallback-check.patch
deleted file mode 100644
index d566619f..00000000
--- a/common/recipes-kernel/linux/files/0663-drm-amdgpu-fix-fence-fallback-check.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 24372447e5cfe65d43a462acbf201c7882551b84 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Christian=20K=C3=B6nig?= <christian.koenig@amd.com>
-Date: Tue, 3 Nov 2015 11:26:42 +0100
-Subject: [PATCH 0663/1565] drm/amdgpu: fix fence fallback check
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Interrupts are notorious unreliable, enable the fallback at
-a couple of more places.
-
-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/amdgpu/amdgpu_fence.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c
-index b912539..2c485a2 100644
---- a/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c
-+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c
-@@ -342,6 +342,7 @@ static bool amdgpu_fence_enable_signaling(struct fence *f)
- fence->fence_wake.func = amdgpu_fence_check_signaled;
- __add_wait_queue(&ring->fence_drv.fence_queue, &fence->fence_wake);
- fence_get(f);
-+ amdgpu_fence_schedule_check(ring);
- FENCE_TRACE(&fence->base, "armed on ring %i!\n", ring->idx);
- return true;
- }
-@@ -367,6 +368,7 @@ static int amdgpu_fence_ring_wait_seq(struct amdgpu_ring *ring, uint64_t seq)
- if (atomic64_read(&ring->fence_drv.last_seq) >= seq)
- return 0;
-
-+ amdgpu_fence_schedule_check(ring);
- wait_event(ring->fence_drv.fence_queue, (
- (signaled = amdgpu_fence_seq_signaled(ring, seq))));
-
---
-1.9.1
-