summaryrefslogtreecommitdiff
path: root/libre/linux-libre-pae/0009-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-03-25 19:50:48 -0400
committerDavid P <megver83@parabola.nu>2020-03-25 19:50:48 -0400
commita0863cfca4e27e2af1a0cd1e519ca7143ba58713 (patch)
tree47033ece5c3dba39d86f5e4e3dfd02b2d19e97fa /libre/linux-libre-pae/0009-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch
parent9898483339d93d1f0e058e851747b41c1269f5de (diff)
downloadabslibre-a0863cfca4e27e2af1a0cd1e519ca7143ba58713.tar.gz
abslibre-a0863cfca4e27e2af1a0cd1e519ca7143ba58713.tar.bz2
abslibre-a0863cfca4e27e2af1a0cd1e519ca7143ba58713.zip
updpkg: libre/linux-libre-pae 5.5.11-1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre/linux-libre-pae/0009-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch')
-rw-r--r--libre/linux-libre-pae/0009-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/libre/linux-libre-pae/0009-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch b/libre/linux-libre-pae/0009-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch
deleted file mode 100644
index c3913790d..000000000
--- a/libre/linux-libre-pae/0009-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 6d98cb966611949e5c98b5a7cee4da0cab594d5f Mon Sep 17 00:00:00 2001
-From: Chris Wilson <chris@chris-wilson.co.uk>
-Date: Thu, 5 Dec 2019 13:29:12 +0000
-Subject: [PATCH 09/11] drm/i915/gem: Reinitialise the local list before
- repeating
-
-As we may start the loop again, we require our local list of i915_vma
-we've processed to be reinitialised.
-
-Fixes: aa5e4453dc05 ("drm/i915/gem: Try to flush pending unbind events")
-Closes: https://gitlab.freedesktop.org/drm/intel/issues/731
-Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-Reviewed-by: Andi Shyti <andi.shyti@intel.com>
-Link: https://patchwork.freedesktop.org/patch/msgid/20191205132912.606868-1-chris@chris-wilson.co.uk
----
- drivers/gpu/drm/i915/i915_gem.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
-index 85b12228c2cf..c2c025c4f4ad 100644
---- a/drivers/gpu/drm/i915/i915_gem.c
-+++ b/drivers/gpu/drm/i915/i915_gem.c
-@@ -174,7 +174,7 @@ int i915_gem_object_unbind(struct drm_i915_gem_object *obj,
- i915_vm_close(vm);
- spin_lock(&obj->vma.lock);
- }
-- list_splice(&still_in_list, &obj->vma.list);
-+ list_splice_init(&still_in_list, &obj->vma.list);
- spin_unlock(&obj->vma.lock);
-
- if (ret == -EAGAIN && flags & I915_GEM_OBJECT_UNBIND_ACTIVE) {
---
-2.25.1
-