summaryrefslogtreecommitdiff
path: root/tests/i915/gem_tiled_pread_basic.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2019-03-24 14:11:16 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2019-03-25 07:28:56 +0000
commit3d325bb211d8cd84c6862c9945185a937395cb44 (patch)
tree60f69ecdfc113b305acc474766d943f1b1f625c2 /tests/i915/gem_tiled_pread_basic.c
parente65d6656673b8ee68100032161579f0609475f1e (diff)
i915: Mark up some forgotten set-domain
It is the user's responsibility to manage their domains. In libdrm, when you mmap a pointer, it calls set-domain automatically, but igt requires the caller to manage it explicitly, so do so. The vast majority already do correct manage the domain as they use the pointer into the mmap, just a few have been missed over the years. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Diffstat (limited to 'tests/i915/gem_tiled_pread_basic.c')
-rw-r--r--tests/i915/gem_tiled_pread_basic.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/i915/gem_tiled_pread_basic.c b/tests/i915/gem_tiled_pread_basic.c
index 425bb07e..1ac9eccd 100644
--- a/tests/i915/gem_tiled_pread_basic.c
+++ b/tests/i915/gem_tiled_pread_basic.c
@@ -74,6 +74,7 @@ create_bo(int fd)
/* Fill the BO with dwords starting at start_val */
data = gem_mmap__gtt(fd, handle, sizeof(linear),
PROT_READ | PROT_WRITE);
+ gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
for (i = 0; i < WIDTH*HEIGHT; i++)
data[i] = i;
munmap(data, sizeof(linear));