aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/i915/i915_gpu_error.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2022-02-04 15:48:26 +1000
committerDave Airlie <airlied@redhat.com>2022-02-04 15:48:27 +1000
commit9ca3d3cd0857523c95ab8cdbb6cfe47b8f90e309 (patch)
treefb4f74697e0cbad23e60211d106173ec6de39b37 /drivers/gpu/drm/i915/i915_gpu_error.c
parent8ea2c5187d7b4901a70374415e772f1db422fb74 (diff)
parent7d73c602154df56802a9e75ac212505fc1e9a2b6 (diff)
downloadlinux-9ca3d3cd0857523c95ab8cdbb6cfe47b8f90e309.tar.gz
linux-9ca3d3cd0857523c95ab8cdbb6cfe47b8f90e309.tar.bz2
linux-9ca3d3cd0857523c95ab8cdbb6cfe47b8f90e309.zip
Merge tag 'drm-intel-fixes-2022-02-03' of git://anongit.freedesktop.org/drm/drm-intel into drm-fixes
Fix GitLab issue #4698: DP monitor through Type-C dock(Dell DA310) doesn't work. Fixes for inconsistent engine busyness value and read timeout with GuC. Fix to use ALLOW_FAIL for error capture buffer allocation. Don't use interruptible lock on error path. Smatch fix to reject zero sized overlays. Signed-off-by: Dave Airlie <airlied@redhat.com> From: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/YfuiG8SKMKP5V/Dm@jlahtine-mobl.ger.corp.intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/i915_gpu_error.c')
-rw-r--r--drivers/gpu/drm/i915/i915_gpu_error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
index 5ae812d60abe..0633888a411e 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.c
+++ b/drivers/gpu/drm/i915/i915_gpu_error.c
@@ -1522,7 +1522,7 @@ capture_engine(struct intel_engine_cs *engine,
struct i915_request *rq = NULL;
unsigned long flags;
- ee = intel_engine_coredump_alloc(engine, GFP_KERNEL);
+ ee = intel_engine_coredump_alloc(engine, ALLOW_FAIL);
if (!ee)
return NULL;