We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fb50b9 commit 50f365cCopy full SHA for 50f365c
drivers/gpu/drm/vc4/vc4_bo.c
@@ -88,11 +88,11 @@ int vc4_bo_stats_debugfs(struct seq_file *m, void *unused)
88
89
mutex_lock(&vc4->purgeable.lock);
90
if (vc4->purgeable.num)
91
- seq_printf(m, "%30s: %6dkb BOs (%d)\n", "userspace BO cache",
+ seq_printf(m, "%30s: %6zdkb BOs (%d)\n", "userspace BO cache",
92
vc4->purgeable.size / 1024, vc4->purgeable.num);
93
94
if (vc4->purgeable.purged_num)
95
- seq_printf(m, "%30s: %6dkb BOs (%d)\n", "total purged BO",
+ seq_printf(m, "%30s: %6zdkb BOs (%d)\n", "total purged BO",
96
vc4->purgeable.purged_size / 1024,
97
vc4->purgeable.purged_num);
98
mutex_unlock(&vc4->purgeable.lock);
0 commit comments