summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/panfrost/pan_resource.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/panfrost/pan_resource.c')
-rw-r--r--src/gallium/drivers/panfrost/pan_resource.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/gallium/drivers/panfrost/pan_resource.c b/src/gallium/drivers/panfrost/pan_resource.c
index 6638f362855..23a05ee43cc 100644
--- a/src/gallium/drivers/panfrost/pan_resource.c
+++ b/src/gallium/drivers/panfrost/pan_resource.c
@@ -353,8 +353,14 @@ panfrost_destroy_bo(struct panfrost_screen *screen, struct panfrost_bo *pbo)
}
if (bo->has_checksum) {
- /* TODO */
- DBG("--leaking checksum (%zd bytes)--\n", bo->checksum_slab.size);
+ struct panfrost_memory mem = {
+ .cpu = bo->checksum_slab.cpu,
+ .gpu = bo->checksum_slab.gpu,
+ .size = bo->checksum_slab.size,
+ .gem_handle = bo->checksum_slab.gem_handle,
+ };
+
+ screen->driver->free_slab(screen, &mem);
}
if (bo->imported) {