Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1621034 > unrolled thread

[PATCH 1/1] drm/vmwgfx: remove an unnecessary check

Started byZhen Lei <thunder.leizhen@huawei.com>
First post2017-04-11 10:50 +0200
Last post2017-04-11 10:50 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] drm/vmwgfx: remove an unnecessary check Zhen Lei <thunder.leizhen@huawei.com> - 2017-04-11 10:50 +0200

#1621034 — [PATCH 1/1] drm/vmwgfx: remove an unnecessary check

FromZhen Lei <thunder.leizhen@huawei.com>
Date2017-04-11 10:50 +0200
Subject[PATCH 1/1] drm/vmwgfx: remove an unnecessary check
Message-ID<tuZER-4BD-7@gated-at.bofh.it>
commit e7e11f995642 ("drm/vmwgfx: fix integer overflow in vmw_surface_define_ioctl()")
ensures that each req->mip_levels[i] <= DRM_VMW_MAX_MIP_LEVELS, It would be easy to
conclude that the sum of req->mip_levels[i] (i = 0, ..., DRM_VMW_MAX_SURFACE_FACES - 1)
is less than or equal to (DRM_VMW_MAX_SURFACE_FACES * DRM_VMW_MAX_MIP_LEVELS).

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 drivers/gpu/drm/vmwgfx/vmwgfx_surface.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
index 05fa092..4520b1f 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
@@ -719,8 +719,7 @@ int vmw_surface_define_ioctl(struct drm_device *dev, void *data,
 		num_sizes += req->mip_levels[i];
 	}

-	if (num_sizes > DRM_VMW_MAX_SURFACE_FACES * DRM_VMW_MAX_MIP_LEVELS ||
-	    num_sizes == 0)
+	if (num_sizes == 0)
 		return -EINVAL;

 	size = vmw_user_surface_size + 128 +
--
2.5.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web