diff mbox

[igt] lib/igt_draw: move to the GTT domain before using GTT mmaps

Message ID 1435247599-21678-1-git-send-email-przanoni@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Paulo Zanoni June 25, 2015, 3:53 p.m. UTC
From: Paulo Zanoni <paulo.r.zanoni@intel.com>

With this, we don't need to worry about what happened to the buffer
before.

Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
---
 lib/igt_draw.c | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Chris Wilson June 25, 2015, 7:48 p.m. UTC | #1
On Thu, Jun 25, 2015 at 12:53:19PM -0300, Paulo Zanoni wrote:
> From: Paulo Zanoni <paulo.r.zanoni@intel.com>
> 
> With this, we don't need to worry about what happened to the buffer
> before.
> 
> Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>

Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris
diff mbox

Patch

diff --git a/lib/igt_draw.c b/lib/igt_draw.c
index 51dce4b..fb9294d 100644
--- a/lib/igt_draw.c
+++ b/lib/igt_draw.c
@@ -262,6 +262,9 @@  static void draw_rect_mmap_gtt(int fd, struct buf_data *buf, struct rect *rect,
 {
 	uint32_t *ptr;
 
+	gem_set_domain(fd, buf->handle, I915_GEM_DOMAIN_GTT,
+		       I915_GEM_DOMAIN_GTT);
+
 	ptr = gem_mmap__gtt(fd, buf->handle, buf->size, PROT_READ | PROT_WRITE);
 	igt_assert(ptr);
 
@@ -276,6 +279,8 @@  static void draw_rect_mmap_wc(int fd, struct buf_data *buf, struct rect *rect,
 	uint32_t *ptr;
 	uint32_t tiling, swizzle;
 
+	gem_set_domain(fd, buf->handle, I915_GEM_DOMAIN_GTT,
+		       I915_GEM_DOMAIN_GTT);
 	gem_get_tiling(fd, buf->handle, &tiling, &swizzle);
 
 	/* We didn't implement suport for the older tiling methods yet. */