Commit 247156d7 authored by Gerd Hoffmann's avatar Gerd Hoffmann

drm/qxl: use QXL_GEM_DOMAIN_SURFACE for shadow bo.

The shadow bo is used as qxl surface, so allocate it as
QXL_GEM_DOMAIN_SURFACE.  Should usually be allocated in
PRIV ttm domain then, so this reduces VRAM memory pressure.
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Acked-by: default avatarNoralf Trønnes <noralf@tronnes.org>
Link: http://patchwork.freedesktop.org/patch/msgid/20190118122020.27596-9-kraxel@redhat.com
parent 6957c686
...@@ -758,7 +758,7 @@ static int qxl_plane_prepare_fb(struct drm_plane *plane, ...@@ -758,7 +758,7 @@ static int qxl_plane_prepare_fb(struct drm_plane *plane,
user_bo->shadow = old_bo->shadow; user_bo->shadow = old_bo->shadow;
} else { } else {
qxl_bo_create(qdev, user_bo->gem_base.size, qxl_bo_create(qdev, user_bo->gem_base.size,
true, true, QXL_GEM_DOMAIN_VRAM, NULL, true, true, QXL_GEM_DOMAIN_SURFACE, NULL,
&user_bo->shadow); &user_bo->shadow);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment