diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2018-09-06 12:47:40 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2018-09-06 13:00:04 +0100 |
commit | 25c9a2fcc83ae7252a178b42262da383e59df744 (patch) | |
tree | 2b900e5633447a33e74a71e8696ead8fcf221c7b /src/sna/kgem.h | |
parent | 00184dc03c1f1e1059fdf08064f8b0367d6cb08c (diff) |
sna: Check for incoherent writes through the GTT
Sometimes the write simply do not land until later, requiring us to be
very careful in how we perform domain tracking.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Diffstat (limited to 'src/sna/kgem.h')
-rw-r--r-- | src/sna/kgem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sna/kgem.h b/src/sna/kgem.h index b0c38dae..8101ce51 100644 --- a/src/sna/kgem.h +++ b/src/sna/kgem.h @@ -190,6 +190,7 @@ struct kgem { uint32_t has_secure_batches :1; uint32_t has_pinned_batches :1; uint32_t has_caching :1; + uint32_t has_coherent_mmap_gtt :1; uint32_t has_llc :1; uint32_t has_wt :1; uint32_t has_no_reloc :1; |