drm/i915: Reject set-tiling-ioctl with stride==0 and a tiling mode
authorChris Wilson <[email protected]>
Fri, 3 Feb 2017 10:56:52 +0000 (10:56 +0000)
committerChris Wilson <[email protected]>
Fri, 3 Feb 2017 13:03:07 +0000 (13:03 +0000)
In commit 957870f93412 ("drm/i915: Split out i915_gem_object_set_tiling()"),
I swapped an alignment check for IS_ALIGNED and in the process removed
the less-than check. That check turns out to be important as it was the
only rejection for stride == 0. Tvrtko did spot it, but I was
overconfident in the IS_ALIGNED() conversion.

Fixes: 957870f93412 ("drm/i915: Split out i915_gem_object_set_tiling()")
Testcase: igt/gem_tiling_max_stride
Signed-off-by: Chris Wilson <[email protected]>
Cc: Chris Wilson <[email protected]>
Cc: Tvrtko Ursulin <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
Reviewed-by: Tvrtko Ursulin <[email protected]>
drivers/gpu/drm/i915/i915_gem_tiling.c

index b1361cfd4c5c2e0d6fb7cb1b34c33e87036e0a24..974ac08df473155f6d9195ecda0f7ba343ae7cec 100644 (file)
@@ -173,7 +173,7 @@ i915_tiling_ok(struct drm_i915_gem_object *obj,
        else
                tile_width = 512;
 
-       if (!IS_ALIGNED(stride, tile_width))
+       if (!stride || !IS_ALIGNED(stride, tile_width))
                return false;
 
        /* 965+ just needs multiples of tile width */