iris: Fix IRIS_MEMZONE_COUNT to exclude the border color pool
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 28 Nov 2018 23:29:38 +0000 (15:29 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 21 Feb 2019 18:26:10 +0000 (10:26 -0800)
This is supposed to exclude single address zones.  We were getting
too many VMA allocators but failing to set them up, which worked out
because we also forgot to destroy them...

src/gallium/drivers/iris/iris_bufmgr.h

index e6ff85ef415be6e6ee2fad76103350419e787e51..92c755c91f65120e57296277291893c2d5b4d5b4 100644 (file)
@@ -74,7 +74,7 @@ enum iris_memory_zone {
 };
 
 /* Intentionally exclude single buffer "zones" */
-#define IRIS_MEMZONE_COUNT (IRIS_MEMZONE_OTHER + 2)
+#define IRIS_MEMZONE_COUNT (IRIS_MEMZONE_OTHER + 1)
 
 #define IRIS_BINDER_SIZE (64 * 1024)
 #define IRIS_MAX_BINDERS 100