]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commit
drm/i915: Flush pending GTT writes before unbinding
authorChris Wilson <chris@chris-wilson.co.uk>
Mon, 4 Dec 2017 13:25:13 +0000 (13:25 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Tue, 5 Dec 2017 21:50:56 +0000 (21:50 +0000)
commit5888fc9eac3c2ff96e76aeeb865fdb46ab2d711e
treecfe7f87e98e8480a83fef0ba26549b01a8543fb9
parent39ccc9852e2b46964c9c44eba52db57413ba6d27
drm/i915: Flush pending GTT writes before unbinding

From the shrinker paths, we want to relinquish the GPU and GGTT access to
the object, releasing the backing storage back to the system for
swapout. As a part of that process we would unpin the pages, marking
them for access by the CPU (for the swapout/swapin). However, if that
process was interrupted after unbind the vma, we missed a flush of the
inflight GGTT writes before we made that GTT space available again for
reuse, with the prospect that we would redirect them to another page.

The bug dates back to the introduction of multiple GGTT vma, but the
code itself dates to commit 02bef8f98d26 ("drm/i915: Unbind closed vma
for i915_gem_object_unbind()").

Fixes: 02bef8f98d26 ("drm/i915: Unbind closed vma for i915_gem_object_unbind()")
Fixes: c5ad54cf7dd8 ("drm/i915: Use partial view in mmap fault handler")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: stable@vger.kernel.org
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20171204132513.7303-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/i915_gem.c