i965: Set MAP_PERSISTENT on program cache buffers.
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 21 Jul 2017 20:09:17 +0000 (13:09 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Sun, 23 Jul 2017 02:34:42 +0000 (19:34 -0700)
Chris Wilson pointed out that this mapping really is persistant.

Shouldn't actually have any effect today, but best to set it anyway.

Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/drivers/dri/i965/brw_program_cache.c

index 8a3a9f67fa6a670e7fef144e4e1da2ac85039b83..04682bef34c91a90cfcb74ac4db1ef102648edcf 100644 (file)
@@ -219,8 +219,10 @@ brw_cache_new_bo(struct brw_cache *cache, uint32_t new_size)
    new_bo = brw_bo_alloc(brw->bufmgr, "program cache", new_size, 64);
    if (can_do_exec_capture(brw->screen))
       new_bo->kflags = EXEC_OBJECT_CAPTURE;
-   if (brw->has_llc)
-      llc_map = brw_bo_map(brw, new_bo, MAP_READ | MAP_WRITE | MAP_ASYNC);
+   if (brw->has_llc) {
+      llc_map = brw_bo_map(brw, new_bo, MAP_READ | MAP_WRITE |
+                                        MAP_ASYNC | MAP_PERSISTENT);
+   }
 
    /* Copy any existing data that needs to be saved. */
    if (cache->next_offset != 0) {
@@ -416,8 +418,10 @@ brw_init_caches(struct brw_context *brw)
    cache->bo = brw_bo_alloc(brw->bufmgr, "program cache",  4096, 64);
    if (can_do_exec_capture(brw->screen))
       cache->bo->kflags = EXEC_OBJECT_CAPTURE;
-   if (brw->has_llc)
-      cache->map = brw_bo_map(brw, cache->bo, MAP_READ | MAP_WRITE | MAP_ASYNC);
+   if (brw->has_llc) {
+      cache->map = brw_bo_map(brw, cache->bo, MAP_READ | MAP_WRITE |
+                                              MAP_ASYNC | MAP_PERSISTENT);
+   }
 }
 
 static void