mirror of https://gitee.com/openkylin/linux.git
drm/i915: Suppress a WARN on reading an object back for a GPU hang
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
8ae62dc62b
commit
87a01e822d
|
@ -577,7 +577,10 @@ i915_error_object_create(struct drm_i915_private *dev_priv,
|
|||
if (dst == NULL)
|
||||
return NULL;
|
||||
|
||||
if (i915_gem_obj_bound(src, vm))
|
||||
dst->gtt_offset = i915_gem_obj_offset(src, vm);
|
||||
else
|
||||
dst->gtt_offset = -1;
|
||||
|
||||
reloc_offset = dst->gtt_offset;
|
||||
use_ggtt = (src->cache_level == I915_CACHE_NONE &&
|
||||
|
|
Loading…
Reference in New Issue