iris: fix index
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 10 Apr 2018 07:39:27 +0000 (00:39 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 21 Feb 2019 18:26:05 +0000 (10:26 -0800)
src/gallium/drivers/iris/iris_bufmgr.c

index cd31227a10f2a35fded360d4c2658c0f99197b32..1ba63ee98a1bc4411931b4de934723a99eeb16e1 100644 (file)
@@ -1386,8 +1386,8 @@ add_bucket(struct iris_bufmgr *bufmgr, int size)
    assert(i < ARRAY_SIZE(bufmgr->cache_bucket));
 
    list_inithead(&bufmgr->cache_bucket[i].head);
-   for (int i = 0; i < IRIS_MEMZONE_COUNT; i++)
-      util_dynarray_init(&bufmgr->cache_bucket[i].vma_list[i], NULL);
+   for (int z = 0; z < IRIS_MEMZONE_COUNT; z++)
+      util_dynarray_init(&bufmgr->cache_bucket[i].vma_list[z], NULL);
    bufmgr->cache_bucket[i].size = size;
    bufmgr->num_buckets++;