summarylogtreecommitdiffstats
path: root/0008-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch
diff options
context:
space:
mode:
authorgraysky2020-04-28 06:50:40 -0400
committergraysky2020-04-28 06:50:40 -0400
commit232945c59745bf0ca2de0915274e6e9cf1579628 (patch)
tree9ae9ee2393a7bb18d4f063e4731ae27ee75a95b1 /0008-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch
parente5209c56fa61f638ca1d596a638add8f924de158 (diff)
downloadaur-232945c59745bf0ca2de0915274e6e9cf1579628.tar.gz
Update to 5.6.7-1
Diffstat (limited to '0008-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch')
-rw-r--r--0008-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/0008-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch b/0008-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch
deleted file mode 100644
index 7dbb049798b7..000000000000
--- a/0008-drm-i915-gem-Reinitialise-the-local-list-before-repe.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 442f9ca36769ea043af37729382044afd7f18676 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 08/13] 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.26.0
-