]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/i915: Print debugfs object list sizes in KiB instead of bytes.
authorEric Anholt <eric@anholt.net>
Tue, 20 Dec 2011 16:54:15 +0000 (08:54 -0800)
committerKeith Packard <keithp@keithp.com>
Mon, 9 Jan 2012 22:02:41 +0000 (14:02 -0800)
They're all in increments of pages, so this just makes it easier on
the eyes.

Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
drivers/gpu/drm/i915/i915_debugfs.c

index 11807989f918b351d0585e5e4a54b9d87c0a3125..f8b8ed22b4dc42f2218b3c2780232e141bf1f131 100644 (file)
@@ -121,11 +121,11 @@ static const char *cache_level_str(int type)
 static void
 describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
 {
-       seq_printf(m, "%p: %s%s %8zd %04x %04x %d %d%s%s%s",
+       seq_printf(m, "%p: %s%s %8zdKiB %04x %04x %d %d%s%s%s",
                   &obj->base,
                   get_pin_flag(obj),
                   get_tiling_flag(obj),
-                  obj->base.size,
+                  obj->base.size / 1024,
                   obj->base.read_domains,
                   obj->base.write_domain,
                   obj->last_rendering_seqno,