From: Joonas Lahtinen Date: Thu, 7 Apr 2016 08:08:04 +0000 (+0300) Subject: drm/i915: Do not WARN_ON in i915_vm_to_ppgtt X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9458f4ba7d355ee2e4a082514c60443697f344ee;p=deliverable%2Flinux.git drm/i915: Do not WARN_ON in i915_vm_to_ppgtt According to Chris, use of i915_vm_to_ppgtt is visible in benchmark unless WARN_ON is removed, so lets get rid of it. Cc: Chris Wilson Reported-by: Chris Wilson Reviewed-by: Chris Wilson (v1) Signed-off-by: Joonas Lahtinen --- diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index a1f78f275c55..4ebd3ff02803 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -3167,7 +3167,6 @@ bool i915_gem_obj_is_pinned(struct drm_i915_gem_object *obj); static inline struct i915_hw_ppgtt * i915_vm_to_ppgtt(struct i915_address_space *vm) { - WARN_ON(i915_is_ggtt(vm)); return container_of(vm, struct i915_hw_ppgtt, base); }