summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4/vc4_bufmgr.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2015-11-04 13:13:39 -0800
committerEric Anholt <eric@anholt.net>2015-11-04 13:32:07 -0800
commit4a951f1c0847353101d28db583e1dd397fdce9ba (patch)
tree5e874448342954fd4d627cc76b42a235997f8c24 /src/gallium/drivers/vc4/vc4_bufmgr.c
parent5bbd522452cfe86fc600203fe1a9b056582e2000 (diff)
downloadexternal_mesa3d-4a951f1c0847353101d28db583e1dd397fdce9ba.zip
external_mesa3d-4a951f1c0847353101d28db583e1dd397fdce9ba.tar.gz
external_mesa3d-4a951f1c0847353101d28db583e1dd397fdce9ba.tar.bz2
vc4: Fix dumping the size of BOs allocated/cached.
60MB of cached BOs are a lot less scary than 600MB.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_bufmgr.c')
-rw-r--r--src/gallium/drivers/vc4/vc4_bufmgr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/vc4/vc4_bufmgr.c b/src/gallium/drivers/vc4/vc4_bufmgr.c
index f7b41f5..171a554 100644
--- a/src/gallium/drivers/vc4/vc4_bufmgr.c
+++ b/src/gallium/drivers/vc4/vc4_bufmgr.c
@@ -42,9 +42,9 @@ vc4_bo_dump_stats(struct vc4_screen *screen)
struct vc4_bo_cache *cache = &screen->bo_cache;
fprintf(stderr, " BOs allocated: %d\n", screen->bo_count);
- fprintf(stderr, " BOs size: %dkb\n", screen->bo_size / 102);
+ fprintf(stderr, " BOs size: %dkb\n", screen->bo_size / 1024);
fprintf(stderr, " BOs cached: %d\n", cache->bo_count);
- fprintf(stderr, " BOs cached size: %dkb\n", cache->bo_size / 102);
+ fprintf(stderr, " BOs cached size: %dkb\n", cache->bo_size / 1024);
if (!list_empty(&cache->time_list)) {
struct vc4_bo *first = LIST_ENTRY(struct vc4_bo,