All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/vgem: Use 256B aligned pitch
@ 2021-06-30 12:02 ` Tejas Upadhyay
  0 siblings, 0 replies; 10+ messages in thread
From: Tejas Upadhyay @ 2021-06-30 12:02 UTC (permalink / raw)
  To: dri-devel; +Cc: intel-gfx, chris

Having different alignment requirement by different drivers,
256B aligned should work for all drm drivers.

Signed-off-by: Tejas Upadhyay <tejaskumarx.surendrakumar.upadhyay@intel.com>
---
 drivers/gpu/drm/vgem/vgem_drv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/vgem/vgem_drv.c b/drivers/gpu/drm/vgem/vgem_drv.c
index bf38a7e319d1..1da6df5e256a 100644
--- a/drivers/gpu/drm/vgem/vgem_drv.c
+++ b/drivers/gpu/drm/vgem/vgem_drv.c
@@ -215,7 +215,7 @@ static int vgem_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
 	struct drm_gem_object *gem_object;
 	u64 pitch, size;
 
-	pitch = args->width * DIV_ROUND_UP(args->bpp, 8);
+	pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 256);
 	size = args->height * pitch;
 	if (size == 0)
 		return -EINVAL;
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-07-01  0:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-30 12:02 [PATCH] drm/vgem: Use 256B aligned pitch Tejas Upadhyay
2021-06-30 12:02 ` [Intel-gfx] " Tejas Upadhyay
2021-06-30 12:21 ` Daniel Vetter
2021-06-30 12:21   ` Daniel Vetter
2021-06-30 12:46   ` Surendrakumar Upadhyay, TejaskumarX
2021-06-30 12:46     ` Surendrakumar Upadhyay, TejaskumarX
2021-06-30 14:03     ` Daniel Vetter
2021-06-30 14:03       ` Daniel Vetter
2021-06-30 17:41 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2021-07-01  0:56 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.