]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/i915: Setup less PPGTT on failed page_directory
authorBen Widawsky <benjamin.widawsky@intel.com>
Thu, 22 Jan 2015 17:01:25 +0000 (17:01 +0000)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 13 Feb 2015 22:28:12 +0000 (23:28 +0100)
The current code will both potentially print a WARN, and setup part of
the PPGTT structure. Neither of these harm the current code, it is
simply for clarity, and to perhaps prevent later bugs, or weird
debug messages.

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Michel Thierry <michel.thierry@intel.com>
Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_gem_gtt.c

index 58d54bddfb986b12999a9b295bd431130260a235..b48b586dc28755ceceb0ee6e7011bb786ffb5a76 100644 (file)
@@ -1032,11 +1032,14 @@ alloc:
                goto alloc;
        }
 
+       if (ret)
+               return ret;
+
        if (ppgtt->node.start < dev_priv->gtt.mappable_end)
                DRM_DEBUG("Forced to use aperture for PDEs\n");
 
        ppgtt->num_pd_entries = GEN6_PPGTT_PD_ENTRIES;
-       return ret;
+       return 0;
 }
 
 static int gen6_ppgtt_allocate_page_tables(struct i915_hw_ppgtt *ppgtt)