Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7851496a authored by Sinclair Yeh's avatar Sinclair Yeh
Browse files

drm/vmwgfx: Fix order of operation



mode->hdisplay * (var->bits_per_pixel + 7) gets evaluated before
the division, potentially making the pitch larger than it should
be.

Since the original intention is to do a div-round-up, just use
the macro instead.

Signed-off-by: default avatarSinclair Yeh <syeh@vmware.com>
Reviewed-by: default avatarThomas Hellstrom <thellstrom@vmware.com>
parent e02e5884
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -574,7 +574,7 @@ static int vmw_fb_set_par(struct fb_info *info)
		old_mode = NULL;
	} else if (!vmw_kms_validate_mode_vram(vmw_priv,
					mode->hdisplay *
					       (var->bits_per_pixel + 7) / 8,
					DIV_ROUND_UP(var->bits_per_pixel, 8),
					mode->vdisplay)) {
		drm_mode_destroy(vmw_priv->dev, mode);
		return -EINVAL;