iris: vma - fix assert
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 19 Apr 2018 20:09:51 +0000 (13:09 -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 50abf901f3731dbd27775980b9fabbe32aeffc0a..023d9720558c781d783d17b172b9c31a4368a18a 100644 (file)
@@ -325,7 +325,7 @@ bucket_vma_free(struct bo_cache_bucket *bucket,
    }
 
    /* Set the bit to return the memory. */
-   assert((node->bitmap & (1ull << bit)) != 0ull);
+   assert((node->bitmap & (1ull << bit)) == 0ull);
    node->bitmap |= 1ull << bit;
 
    /* The block might be entirely free now, and if so, we could return it