diff options
author | Dave Airlie <airlied@redhat.com> | 2019-11-15 03:16:43 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2019-11-15 03:16:43 +0100 |
commit | 2d0720f5a4fc2aa5ae92f21fc113d7626b5a3c9f (patch) | |
tree | 62d241d86b32eede235b84d7e5a67e79215c800f /drivers/gpu/drm/i915/gem/i915_gem_context.c | |
parent | Backmerge i915 security patches from commit 'ea0b163b13ff' into drm-next (diff) | |
parent | drm/i915: Split a setting of MSA to MST and SST (diff) | |
download | linux-2d0720f5a4fc2aa5ae92f21fc113d7626b5a3c9f.tar.xz linux-2d0720f5a4fc2aa5ae92f21fc113d7626b5a3c9f.zip |
Merge tag 'drm-intel-next-fixes-2019-11-14' of git://anongit.freedesktop.org/drm/drm-intel into drm-next
- PMU "Frequency" is reported as accumulated cycles
- Avoid OOPS in dumb_create IOCTL when no CRTCs
- Mitigation for userptr put_pages deadlock with trylock_page
- Fix to avoid freeing heartbeat request too early
- Fix LRC coherency issue
- Fix Bugzilla #112212: Avoid screen corruption on MST
- Error path fix to unlock context on failed context VM SETPARAM
- Always consider holding preemption a privileged op in perf/OA
- Preload LUTs if the hw isn't currently using them to avoid color flash on VLV/CHV
- Protect context while grabbing its name for the request
- Don't resize aliasing ppGTT size
- Smaller fixes picked by tooling
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191114085213.GA6440@jlahtine-desk.ger.corp.intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/gem/i915_gem_context.c')
-rw-r--r-- | drivers/gpu/drm/i915/gem/i915_gem_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_context.c b/drivers/gpu/drm/i915/gem/i915_gem_context.c index 138c8e33d26b..09f84f0ad0f4 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_context.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_context.c @@ -1141,7 +1141,7 @@ static int set_ppgtt(struct drm_i915_file_private *file_priv, if (i915_gem_context_is_closed(ctx)) { err = -ENOENT; - goto out; + goto unlock; } if (vm == rcu_access_pointer(ctx->vm)) |