]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/i915: Treat an error from i915_vma_instance() as unlikely
authorChris Wilson <chris@chris-wilson.co.uk>
Thu, 19 Jan 2017 19:26:57 +0000 (19:26 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Sat, 21 Jan 2017 10:32:21 +0000 (10:32 +0000)
When pinning into the global GTT, an error from creating the VMA is
unlikely, so mark it so.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/20170119192659.31789-4-chris@chris-wilson.co.uk
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
drivers/gpu/drm/i915/i915_gem.c

index 145dc83d302d0f5ab36f2cc9190b26d1f59ddbcb..a07b627329234a18c443011000dbac06c0de242d 100644 (file)
@@ -3688,7 +3688,7 @@ i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
        lockdep_assert_held(&obj->base.dev->struct_mutex);
 
        vma = i915_vma_instance(obj, vm, view);
-       if (IS_ERR(vma))
+       if (unlikely(IS_ERR(vma)))
                return vma;
 
        if (i915_vma_misplaced(vma, size, alignment, flags)) {