summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_gem.c
diff options
context:
space:
mode:
authorChris Wilson2013-05-21 17:58:49 +0200
committerDaniel Vetter2013-05-23 12:51:29 +0200
commita36689cb771f06819c3fa8139c3d3716dfdf6d53 (patch)
treeedc6214c1fd10020dd99e91afd27ad3d0992eed4 /drivers/gpu/drm/i915/i915_gem.c
parentdrm/i915: set FORCE_ARB_IDLE_PLANES workaround (diff)
downloadkernel-qcow2-linux-a36689cb771f06819c3fa8139c3d3716dfdf6d53.tar.gz
kernel-qcow2-linux-a36689cb771f06819c3fa8139c3d3716dfdf6d53.tar.xz
kernel-qcow2-linux-a36689cb771f06819c3fa8139c3d3716dfdf6d53.zip
drm/i915: Be more informative when reporting "too large for aperture" error
This should help debugging the truly unexpected cases where it occurs - in particular to see which value is garbage. References: https://bugzilla.kernel.org/show_bug.cgi?id=58511 Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> [danvet: s/%ld/%zd/ as spotted by Wu Fengguang's autobuilder.] Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_gem.c')
-rw-r--r--drivers/gpu/drm/i915/i915_gem.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index a1a282ce2466..39a9828cdff9 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -2975,7 +2975,10 @@ i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
*/
if (obj->base.size >
(map_and_fenceable ? dev_priv->gtt.mappable_end : dev_priv->gtt.total)) {
- DRM_ERROR("Attempting to bind an object larger than the aperture\n");
+ DRM_ERROR("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%ld\n",
+ obj->base.size,
+ map_and_fenceable ? "mappable" : "total",
+ map_and_fenceable ? dev_priv->gtt.mappable_end : dev_priv->gtt.total);
return -E2BIG;
}