iris: bo reuse
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 19 Apr 2018 20:03:21 +0000 (13:03 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 21 Feb 2019 18:26:06 +0000 (10:26 -0800)
src/gallium/drivers/iris/iris_bufmgr.c

index 0ca4c97a73eb9024177ebbb56422cd17d9b3a08e..68f092369605a62f0ab9715b94f29e7c2c02478f 100644 (file)
@@ -48,6 +48,7 @@
 #include "common/gen_debug.h"
 #include "dev/gen_device_info.h"
 #include "main/macros.h"
+#include "util/debug.h"
 #include "util/macros.h"
 #include "util/hash_table.h"
 #include "util/list.h"
@@ -1391,19 +1392,6 @@ iris_bo_flink(struct iris_bo *bo, uint32_t *name)
    return 0;
 }
 
-/**
- * Enables unlimited caching of buffer objects for reuse.
- *
- * This is potentially very memory expensive, as the cache at each bucket
- * size is only bounded by how many buffers of that size we've managed to have
- * in flight at once.
- */
-void
-iris_bufmgr_enable_reuse(struct iris_bufmgr *bufmgr)
-{
-   bufmgr->bo_reuse = true;
-}
-
 static void
 add_bucket(struct iris_bufmgr *bufmgr, int size)
 {
@@ -1545,6 +1533,9 @@ iris_bufmgr_init(struct gen_device_info *devinfo, int fd)
    util_vma_heap_init(&bufmgr->vma_allocator[IRIS_MEMZONE_OTHER],
                       3 * _4GB, (1ull << 48) - 3 * _4GB);
 
+   // XXX: driconf
+   bufmgr->bo_reuse = env_var_as_boolean("bo_reuse", true);
+
    init_cache_buckets(bufmgr);
 
    bufmgr->name_table =